app
Module Contents
alltypes
Module Contents
class
AccountFragment
:
Fragment
Module Contents
AccountFragment
(
)
fun
onActivityCreated
(
savedInstanceState
:
Bundle
?
)
:
Unit
fun
onCreateView
(
inflater
:
LayoutInflater
,
container
:
ViewGroup
?
,
savedInstanceState
:
Bundle
?
)
:
View
?
lateinit
var
viewAdapter
:
Adapter
<
*
>
data
class
ActionPostResponse
Module Contents
ActionPostResponse
(
username
:
String
,
postId
:
String
)
val
postId
:
String
val
username
:
String
class
AddPostFragment
:
BottomSheetDialogFragment
Module Contents
AddPostFragment
(
)
fun
onActivityCreated
(
savedInstanceState
:
Bundle
?
)
:
Unit
fun
onCreateView
(
inflater
:
LayoutInflater
,
container
:
ViewGroup
?
,
savedInstanceState
:
Bundle
?
)
:
View
?
abstract
class
ApplicationDatabase
:
RoomDatabase
Module Contents
ApplicationDatabase
(
)
abstract
fun
pinboardDao
(
)
:
PinboardDao
open
class
ApplicationDatabase_Impl
:
ApplicationDatabase
Module Contents
ApplicationDatabase_Impl
(
)
open
fun
clearAllTables
(
)
:
Unit
open
fun
pinboardDao
(
)
:
PinboardDao
open
class
ApplicationDatabase_Impl
:
ApplicationDatabase
Module Contents
ApplicationDatabase_Impl
(
)
open
fun
clearAllTables
(
)
:
Unit
open
fun
pinboardDao
(
)
:
PinboardDao
class
BuildConfig
Module Contents
BuildConfig
(
)
static
val
APPLICATION_ID
:
String
static
val
BUILD_TYPE
:
String
static
val
DEBUG
:
Boolean
static
val
FLAVOR
:
String
static
val
VERSION_CODE
:
Int
static
val
VERSION_NAME
:
String
class
BuildConfig
Module Contents
BuildConfig
(
)
static
val
APPLICATION_ID
:
String
static
val
BUILD_TYPE
:
String
static
val
DEBUG
:
Boolean
static
val
FLAVOR
:
String
static
val
VERSION_CODE
:
Int
static
val
VERSION_NAME
:
String
data
class
CheckGebruikersnaamResponse
Module Contents
CheckGebruikersnaamResponse
(
username
:
String
)
val
username
:
String
class
ConnectionLiveData
:
LiveData
<
Boolean
>
Module Contents
ConnectionLiveData
(
context
:
Context
)
val
context
:
Context
protected
fun
onActive
(
)
:
Unit
protected
fun
onInactive
(
)
:
Unit
object
DateUtil
Module Contents
fun
toSimpleString
(
date
:
Date
)
:
String
data
class
Gebruiker
Module Contents
Gebruiker
(
username
:
String
,
password
:
String
)
val
password
:
String
val
username
:
String
interface
GebruikerRepository
Module Contents
@POST
(
"users/checkusername"
)
abstract
fun
checkGebruikersnaam
(
@Body
gebruikersnaamResponse
:
CheckGebruikersnaamResponse
)
:
Observable
<
CheckGebruikersnaamResponse
>
@POST
(
"users/likedPosts"
)
abstract
fun
getLikedPosts
(
@Body
checkGeruikersnaamResponse
:
CheckGebruikersnaamResponse
)
:
Observable
<
List
<
PostResponse
>
>
@POST
(
"users/likePost"
)
abstract
fun
likePost
(
@Body
actionPostResponse
:
ActionPostResponse
)
:
Observable
<
List
<
PostResponse
>
>
@POST
(
"users/login"
)
abstract
fun
login
(
@Body
gebruiker
:
Gebruiker
)
:
Observable
<
RegistreerResponse
>
@POST
(
"users/register"
)
abstract
fun
registreer
(
@Body
gebruiker
:
Gebruiker
)
:
Observable
<
RegistreerResponse
>
@POST
(
"users/unLikePost"
)
abstract
fun
unLikePost
(
@Body
actionPostResponse
:
ActionPostResponse
)
:
Observable
<
List
<
PostResponse
>
>
object
GebruikerService
Module Contents
var
repository
:
GebruikerRepository
class
GeenInternetFragment
:
Fragment
Module Contents
GeenInternetFragment
(
)
fun
onCreateView
(
inflater
:
LayoutInflater
,
container
:
ViewGroup
?
,
savedInstanceState
:
Bundle
?
)
:
View
?
data
class
Location
Module Contents
Location
(
longitude
:
Double
?
,
latitude
:
Double
?
)
var
latitude
:
Double
?
var
longitude
:
Double
?
class
LoginFragment
:
Fragment
Module Contents
LoginFragment
(
)
fun
onActivityCreated
(
savedInstanceState
:
Bundle
?
)
:
Unit
fun
onCreate
(
savedInstanceState
:
Bundle
?
)
:
Unit
fun
onCreateView
(
inflater
:
LayoutInflater
,
container
:
ViewGroup
?
,
savedInstanceState
:
Bundle
?
)
:
View
?
lateinit
var
passwordInput
:
EditText
lateinit
var
passwordInputLayout
:
TextInputLayout
lateinit
var
usernameInput
:
EditText
lateinit
var
usernameInputLayout
:
TextInputLayout
class
MainActivity
:
AppCompatActivity
,
NavigationHost
Module Contents
MainActivity
(
)
lateinit
var
loginFragment
:
LoginFragment
fun
navigateTo
(
fragment
:
Fragment
,
addToBackstack
:
Boolean
)
:
Unit
protected
fun
onCreate
(
savedInstanceState
:
Bundle
?
)
:
Unit
class
MainService
Module Contents
MainService
(
pinboardDao
:
PinboardDao
)
fun
getAll
(
)
:
Observable
<
List
<
Pinboard
>
>
val
pinboardDao
:
PinboardDao
interface
NavigationHost
Module Contents
abstract
fun
navigateTo
(
fragment
:
Fragment
,
addToBackstack
:
Boolean
)
:
Unit
data
class
Pinboard
Module Contents
Pinboard
(
)
Pinboard
(
_id
:
String
,
city
:
String
,
location
:
Location
,
posts
:
MutableList
<
PostResponse
>
?
=
mutableListOf()
)
var
_id
:
String
val
amountOfPosts
:
Int
var
city
:
String
var
location
:
Location
var
posts
:
MutableList
<
PostResponse
>
?
interface
PinboardDao
Module Contents
abstract
fun
getAll
(
)
:
Single
<
List
<
Pinboard
>
>
abstract
fun
insertAll
(
pinboards
:
List
<
Pinboard
>
)
:
Unit
open
class
PinboardDao_Impl
:
PinboardDao
Module Contents
PinboardDao_Impl
(
__db
:
RoomDatabase
)
open
fun
getAll
(
)
:
Single
<
List
<
Pinboard
>
>
open
fun
insertAll
(
pinboards
:
List
<
Pinboard
>
)
:
Unit
open
class
PinboardDao_Impl
:
PinboardDao
Module Contents
PinboardDao_Impl
(
__db
:
RoomDatabase
)
open
fun
getAll
(
)
:
Single
<
List
<
Pinboard
>
>
open
fun
insertAll
(
pinboards
:
List
<
Pinboard
>
)
:
Unit
class
PinboardDetailsActivity
:
AppCompatActivity
Module Contents
PinboardDetailsActivity
(
)
protected
fun
onCreate
(
savedInstanceState
:
Bundle
?
)
:
Unit
fun
onOptionsItemSelected
(
item
:
MenuItem
)
:
Boolean
lateinit
var
pinboard
:
Pinboard
lateinit
var
viewAdapter
:
Adapter
<
*
>
class
PinboardListFragment
:
Fragment
Module Contents
PinboardListFragment
(
)
inner
class
RefreshListener
:
OnClickListener
Module Contents
RefreshListener
(
)
fun
onClick
(
view
:
View
)
:
Unit
lateinit
var
displayPinboards
:
MutableList
<
Pinboard
>
fun
onActivityCreated
(
savedInstanceState
:
Bundle
?
)
:
Unit
fun
onCreate
(
savedInstanceState
:
Bundle
?
)
:
Unit
fun
onCreateOptionsMenu
(
menu
:
Menu
,
inflater
:
MenuInflater
)
:
Unit
fun
onCreateView
(
inflater
:
LayoutInflater
,
container
:
ViewGroup
?
,
savedInstanceState
:
Bundle
?
)
:
View
?
fun
onResume
(
)
:
Unit
interface
PinboardRepository
Module Contents
@POST
(
"pinboard/{id}/posts"
)
abstract
fun
addPostToPinboard
(
@Path
(
"id"
)
pinboardId
:
String
,
@Body
post
:
Post
)
:
Observable
<
PostResponse
>
@GET
(
"pinboards"
)
abstract
fun
getAll
(
)
:
Observable
<
List
<
Pinboard
>
>
object
PinboardService
Module Contents
var
repository
:
PinboardRepository
class
PinboardsAdapter
:
Adapter
<
MyViewHolder
>
Module Contents
PinboardsAdapter
(
context
:
Context
?
,
pinboards
:
List
<
Pinboard
>
)
inner
class
MyViewHolder
:
ViewHolder
Module Contents
MyViewHolder
(
itemView
:
View
)
var
currentPinboard
:
Pinboard
?
var
currentPosition
:
Int
fun
setData
(
pinboard
:
Pinboard
?
,
position
:
Int
)
:
Unit
val
context
:
Context
?
fun
getItemCount
(
)
:
Int
fun
onBindViewHolder
(
holder
:
MyViewHolder
,
position
:
Int
)
:
Unit
fun
onCreateViewHolder
(
parent
:
ViewGroup
,
p1
:
Int
)
:
MyViewHolder
val
pinboards
:
List
<
Pinboard
>
data
class
Post
Module Contents
Post
(
title
:
String
,
body
:
String
,
dateCreated
:
Date
?
=
null
,
likes
:
Int
=
0
,
creator
:
String
?
=
null
)
val
body
:
String
val
creator
:
String
?
val
dateCreated
:
Date
?
var
likes
:
Int
val
title
:
String
data
class
PostResponse
Module Contents
PostResponse
(
_id
:
String
,
title
:
String
,
body
:
String
,
dateCreated
:
Date
?
=
null
,
likes
:
Int
=
0
,
creator
:
String
?
=
null
)
val
_id
:
String
fun
addLike
(
)
:
Unit
val
body
:
String
val
creator
:
String
?
val
dateCreated
:
Date
?
var
likes
:
Int
fun
removeLike
(
)
:
Unit
val
title
:
String
class
PostsAdapter
:
Adapter
<
MyViewHolder
>
Module Contents
PostsAdapter
(
context
:
Context
,
posts
:
MutableList
<
PostResponse
>
)
inner
class
MyViewHolder
:
ViewHolder
Module Contents
MyViewHolder
(
itemView
:
View
)
fun
setData
(
post
:
PostResponse
,
position
:
Int
)
:
Unit
fun
updateAmountOfLikes
(
)
:
Unit
val
context
:
Context
fun
getItemCount
(
)
:
Int
fun
onBindViewHolder
(
holder
:
MyViewHolder
,
position
:
Int
)
:
Unit
fun
onCreateViewHolder
(
parent
:
ViewGroup
,
viewType
:
Int
)
:
MyViewHolder
class
R
Module Contents
R
(
)
class
anim
Module Contents
anim
(
)
static
val
abc_fade_in
:
Int
static
val
abc_fade_out
:
Int
static
val
abc_grow_fade_in_from_bottom
:
Int
static
val
abc_popup_enter
:
Int
static
val
abc_popup_exit
:
Int
static
val
abc_shrink_fade_out_from_bottom
:
Int
static
val
abc_slide_in_bottom
:
Int
static
val
abc_slide_in_top
:
Int
static
val
abc_slide_out_bottom
:
Int
static
val
abc_slide_out_top
:
Int
static
val
abc_tooltip_enter
:
Int
static
val
abc_tooltip_exit
:
Int
static
val
design_bottom_sheet_slide_in
:
Int
static
val
design_bottom_sheet_slide_out
:
Int
static
val
design_snackbar_in
:
Int
static
val
design_snackbar_out
:
Int
class
animator
Module Contents
animator
(
)
static
val
design_appbar_state_list_animator
:
Int
static
val
design_fab_hide_motion_spec
:
Int
static
val
design_fab_show_motion_spec
:
Int
static
val
mtrl_btn_state_list_anim
:
Int
static
val
mtrl_btn_unelevated_state_list_anim
:
Int
static
val
mtrl_chip_state_list_anim
:
Int
static
val
mtrl_fab_hide_motion_spec
:
Int
static
val
mtrl_fab_show_motion_spec
:
Int
static
val
mtrl_fab_transformation_sheet_collapse_spec
:
Int
static
val
mtrl_fab_transformation_sheet_expand_spec
:
Int
class
attr
Module Contents
attr
(
)
static
val
actionBarDivider
:
Int
static
val
actionBarItemBackground
:
Int
static
val
actionBarPopupTheme
:
Int
static
val
actionBarSize
:
Int
static
val
actionBarSplitStyle
:
Int
static
val
actionBarStyle
:
Int
static
val
actionBarTabBarStyle
:
Int
static
val
actionBarTabStyle
:
Int
static
val
actionBarTabTextStyle
:
Int
static
val
actionBarTheme
:
Int
static
val
actionBarWidgetTheme
:
Int
static
val
actionButtonStyle
:
Int
static
val
actionDropDownStyle
:
Int
static
val
actionLayout
:
Int
static
val
actionMenuTextAppearance
:
Int
static
val
actionMenuTextColor
:
Int
static
val
actionModeBackground
:
Int
static
val
actionModeCloseButtonStyle
:
Int
static
val
actionModeCloseDrawable
:
Int
static
val
actionModeCopyDrawable
:
Int
static
val
actionModeCutDrawable
:
Int
static
val
actionModeFindDrawable
:
Int
static
val
actionModePasteDrawable
:
Int
static
val
actionModePopupWindowStyle
:
Int
static
val
actionModeSelectAllDrawable
:
Int
static
val
actionModeShareDrawable
:
Int
static
val
actionModeSplitBackground
:
Int
static
val
actionModeStyle
:
Int
static
val
actionModeWebSearchDrawable
:
Int
static
val
actionOverflowButtonStyle
:
Int
static
val
actionOverflowMenuStyle
:
Int
static
val
actionProviderClass
:
Int
static
val
actionViewClass
:
Int
static
val
activityChooserViewStyle
:
Int
static
val
alertDialogButtonGroupStyle
:
Int
static
val
alertDialogCenterButtons
:
Int
static
val
alertDialogStyle
:
Int
static
val
alertDialogTheme
:
Int
static
val
allowStacking
:
Int
static
val
alpha
:
Int
static
val
alphabeticModifiers
:
Int
static
val
arrowHeadLength
:
Int
static
val
arrowShaftLength
:
Int
static
val
autoCompleteTextViewStyle
:
Int
static
val
autoSizeMaxTextSize
:
Int
static
val
autoSizeMinTextSize
:
Int
static
val
autoSizePresetSizes
:
Int
static
val
autoSizeStepGranularity
:
Int
static
val
autoSizeTextType
:
Int
static
val
background
:
Int
static
val
backgroundSplit
:
Int
static
val
backgroundStacked
:
Int
static
val
backgroundTint
:
Int
static
val
backgroundTintMode
:
Int
static
val
barLength
:
Int
static
val
barrierAllowsGoneWidgets
:
Int
static
val
barrierDirection
:
Int
static
val
behavior_autoHide
:
Int
static
val
behavior_fitToContents
:
Int
static
val
behavior_hideable
:
Int
static
val
behavior_overlapTop
:
Int
static
val
behavior_peekHeight
:
Int
static
val
behavior_skipCollapsed
:
Int
static
val
borderWidth
:
Int
static
val
borderlessButtonStyle
:
Int
static
val
bottomAppBarStyle
:
Int
static
val
bottomNavigationStyle
:
Int
static
val
bottomSheetDialogTheme
:
Int
static
val
bottomSheetStyle
:
Int
static
val
boxBackgroundColor
:
Int
static
val
boxBackgroundMode
:
Int
static
val
boxCollapsedPaddingTop
:
Int
static
val
boxCornerRadiusBottomEnd
:
Int
static
val
boxCornerRadiusBottomStart
:
Int
static
val
boxCornerRadiusTopEnd
:
Int
static
val
boxCornerRadiusTopStart
:
Int
static
val
boxStrokeColor
:
Int
static
val
boxStrokeWidth
:
Int
static
val
buttonBarButtonStyle
:
Int
static
val
buttonBarNegativeButtonStyle
:
Int
static
val
buttonBarNeutralButtonStyle
:
Int
static
val
buttonBarPositiveButtonStyle
:
Int
static
val
buttonBarStyle
:
Int
static
val
buttonGravity
:
Int
static
val
buttonIconDimen
:
Int
static
val
buttonPanelSideLayout
:
Int
static
val
buttonStyle
:
Int
static
val
buttonStyleSmall
:
Int
static
val
buttonTint
:
Int
static
val
buttonTintMode
:
Int
static
val
cardBackgroundColor
:
Int
static
val
cardCornerRadius
:
Int
static
val
cardElevation
:
Int
static
val
cardMaxElevation
:
Int
static
val
cardPreventCornerOverlap
:
Int
static
val
cardUseCompatPadding
:
Int
static
val
cardViewStyle
:
Int
static
val
chainUseRtl
:
Int
static
val
checkboxStyle
:
Int
static
val
checkedChip
:
Int
static
val
checkedIcon
:
Int
static
val
checkedIconEnabled
:
Int
static
val
checkedIconVisible
:
Int
static
val
checkedTextViewStyle
:
Int
static
val
chipBackgroundColor
:
Int
static
val
chipCornerRadius
:
Int
static
val
chipEndPadding
:
Int
static
val
chipGroupStyle
:
Int
static
val
chipIcon
:
Int
static
val
chipIconEnabled
:
Int
static
val
chipIconSize
:
Int
static
val
chipIconTint
:
Int
static
val
chipIconVisible
:
Int
static
val
chipMinHeight
:
Int
static
val
chipSpacing
:
Int
static
val
chipSpacingHorizontal
:
Int
static
val
chipSpacingVertical
:
Int
static
val
chipStandaloneStyle
:
Int
static
val
chipStartPadding
:
Int
static
val
chipStrokeColor
:
Int
static
val
chipStrokeWidth
:
Int
static
val
chipStyle
:
Int
static
val
closeIcon
:
Int
static
val
closeIconEnabled
:
Int
static
val
closeIconEndPadding
:
Int
static
val
closeIconSize
:
Int
static
val
closeIconStartPadding
:
Int
static
val
closeIconTint
:
Int
static
val
closeIconVisible
:
Int
static
val
closeItemLayout
:
Int
static
val
collapseContentDescription
:
Int
static
val
collapseIcon
:
Int
static
val
collapsedTitleGravity
:
Int
static
val
collapsedTitleTextAppearance
:
Int
static
val
color
:
Int
static
val
colorAccent
:
Int
static
val
colorBackgroundFloating
:
Int
static
val
colorButtonNormal
:
Int
static
val
colorControlActivated
:
Int
static
val
colorControlHighlight
:
Int
static
val
colorControlNormal
:
Int
static
val
colorError
:
Int
static
val
colorPrimary
:
Int
static
val
colorPrimaryDark
:
Int
static
val
colorSecondary
:
Int
static
val
colorSwitchThumbNormal
:
Int
static
val
commitIcon
:
Int
static
val
constraintSet
:
Int
static
val
constraint_referenced_ids
:
Int
static
val
content
:
Int
static
val
contentDescription
:
Int
static
val
contentInsetEnd
:
Int
static
val
contentInsetEndWithActions
:
Int
static
val
contentInsetLeft
:
Int
static
val
contentInsetRight
:
Int
static
val
contentInsetStart
:
Int
static
val
contentInsetStartWithNavigation
:
Int
static
val
contentPadding
:
Int
static
val
contentPaddingBottom
:
Int
static
val
contentPaddingLeft
:
Int
static
val
contentPaddingRight
:
Int
static
val
contentPaddingTop
:
Int
static
val
contentScrim
:
Int
static
val
controlBackground
:
Int
static
val
coordinatorLayoutStyle
:
Int
static
val
cornerRadius
:
Int
static
val
counterEnabled
:
Int
static
val
counterMaxLength
:
Int
static
val
counterOverflowTextAppearance
:
Int
static
val
counterTextAppearance
:
Int
static
val
customNavigationLayout
:
Int
static
val
defaultQueryHint
:
Int
static
val
dialogCornerRadius
:
Int
static
val
dialogPreferredPadding
:
Int
static
val
dialogTheme
:
Int
static
val
displayOptions
:
Int
static
val
divider
:
Int
static
val
dividerHorizontal
:
Int
static
val
dividerPadding
:
Int
static
val
dividerVertical
:
Int
static
val
drawableSize
:
Int
static
val
drawerArrowStyle
:
Int
static
val
dropDownListViewStyle
:
Int
static
val
dropdownListPreferredItemHeight
:
Int
static
val
editTextBackground
:
Int
static
val
editTextColor
:
Int
static
val
editTextStyle
:
Int
static
val
elevation
:
Int
static
val
emptyVisibility
:
Int
static
val
enforceMaterialTheme
:
Int
static
val
enforceTextAppearance
:
Int
static
val
errorEnabled
:
Int
static
val
errorTextAppearance
:
Int
static
val
expandActivityOverflowButtonDrawable
:
Int
static
val
expanded
:
Int
static
val
expandedTitleGravity
:
Int
static
val
expandedTitleMargin
:
Int
static
val
expandedTitleMarginBottom
:
Int
static
val
expandedTitleMarginEnd
:
Int
static
val
expandedTitleMarginStart
:
Int
static
val
expandedTitleMarginTop
:
Int
static
val
expandedTitleTextAppearance
:
Int
static
val
fabAlignmentMode
:
Int
static
val
fabCradleMargin
:
Int
static
val
fabCradleRoundedCornerRadius
:
Int
static
val
fabCradleVerticalOffset
:
Int
static
val
fabCustomSize
:
Int
static
val
fabSize
:
Int
static
val
fastScrollEnabled
:
Int
static
val
fastScrollHorizontalThumbDrawable
:
Int
static
val
fastScrollHorizontalTrackDrawable
:
Int
static
val
fastScrollVerticalThumbDrawable
:
Int
static
val
fastScrollVerticalTrackDrawable
:
Int
static
val
firstBaselineToTopHeight
:
Int
static
val
floatingActionButtonStyle
:
Int
static
val
font
:
Int
static
val
fontFamily
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
foregroundInsidePadding
:
Int
static
val
gapBetweenBars
:
Int
static
val
goIcon
:
Int
static
val
headerLayout
:
Int
static
val
height
:
Int
static
val
helperText
:
Int
static
val
helperTextEnabled
:
Int
static
val
helperTextTextAppearance
:
Int
static
val
hideMotionSpec
:
Int
static
val
hideOnContentScroll
:
Int
static
val
hideOnScroll
:
Int
static
val
hintAnimationEnabled
:
Int
static
val
hintEnabled
:
Int
static
val
hintTextAppearance
:
Int
static
val
homeAsUpIndicator
:
Int
static
val
homeLayout
:
Int
static
val
hoveredFocusedTranslationZ
:
Int
static
val
icon
:
Int
static
val
iconEndPadding
:
Int
static
val
iconGravity
:
Int
static
val
iconPadding
:
Int
static
val
iconSize
:
Int
static
val
iconStartPadding
:
Int
static
val
iconTint
:
Int
static
val
iconTintMode
:
Int
static
val
iconifiedByDefault
:
Int
static
val
imageButtonStyle
:
Int
static
val
indeterminateProgressStyle
:
Int
static
val
initialActivityCount
:
Int
static
val
insetForeground
:
Int
static
val
isLightTheme
:
Int
static
val
itemBackground
:
Int
static
val
itemHorizontalPadding
:
Int
static
val
itemHorizontalTranslationEnabled
:
Int
static
val
itemIconPadding
:
Int
static
val
itemIconSize
:
Int
static
val
itemIconTint
:
Int
static
val
itemPadding
:
Int
static
val
itemSpacing
:
Int
static
val
itemTextAppearance
:
Int
static
val
itemTextAppearanceActive
:
Int
static
val
itemTextAppearanceInactive
:
Int
static
val
itemTextColor
:
Int
static
val
keylines
:
Int
static
val
labelVisibilityMode
:
Int
static
val
lastBaselineToBottomHeight
:
Int
static
val
layout
:
Int
static
val
layoutManager
:
Int
static
val
layout_anchor
:
Int
static
val
layout_anchorGravity
:
Int
static
val
layout_behavior
:
Int
static
val
layout_collapseMode
:
Int
static
val
layout_collapseParallaxMultiplier
:
Int
static
val
layout_constrainedHeight
:
Int
static
val
layout_constrainedWidth
:
Int
static
val
layout_constraintBaseline_creator
:
Int
static
val
layout_constraintBaseline_toBaselineOf
:
Int
static
val
layout_constraintBottom_creator
:
Int
static
val
layout_constraintBottom_toBottomOf
:
Int
static
val
layout_constraintBottom_toTopOf
:
Int
static
val
layout_constraintCircle
:
Int
static
val
layout_constraintCircleAngle
:
Int
static
val
layout_constraintCircleRadius
:
Int
static
val
layout_constraintDimensionRatio
:
Int
static
val
layout_constraintEnd_toEndOf
:
Int
static
val
layout_constraintEnd_toStartOf
:
Int
static
val
layout_constraintGuide_begin
:
Int
static
val
layout_constraintGuide_end
:
Int
static
val
layout_constraintGuide_percent
:
Int
static
val
layout_constraintHeight_default
:
Int
static
val
layout_constraintHeight_max
:
Int
static
val
layout_constraintHeight_min
:
Int
static
val
layout_constraintHeight_percent
:
Int
static
val
layout_constraintHorizontal_bias
:
Int
static
val
layout_constraintHorizontal_chainStyle
:
Int
static
val
layout_constraintHorizontal_weight
:
Int
static
val
layout_constraintLeft_creator
:
Int
static
val
layout_constraintLeft_toLeftOf
:
Int
static
val
layout_constraintLeft_toRightOf
:
Int
static
val
layout_constraintRight_creator
:
Int
static
val
layout_constraintRight_toLeftOf
:
Int
static
val
layout_constraintRight_toRightOf
:
Int
static
val
layout_constraintStart_toEndOf
:
Int
static
val
layout_constraintStart_toStartOf
:
Int
static
val
layout_constraintTop_creator
:
Int
static
val
layout_constraintTop_toBottomOf
:
Int
static
val
layout_constraintTop_toTopOf
:
Int
static
val
layout_constraintVertical_bias
:
Int
static
val
layout_constraintVertical_chainStyle
:
Int
static
val
layout_constraintVertical_weight
:
Int
static
val
layout_constraintWidth_default
:
Int
static
val
layout_constraintWidth_max
:
Int
static
val
layout_constraintWidth_min
:
Int
static
val
layout_constraintWidth_percent
:
Int
static
val
layout_dodgeInsetEdges
:
Int
static
val
layout_editor_absoluteX
:
Int
static
val
layout_editor_absoluteY
:
Int
static
val
layout_goneMarginBottom
:
Int
static
val
layout_goneMarginEnd
:
Int
static
val
layout_goneMarginLeft
:
Int
static
val
layout_goneMarginRight
:
Int
static
val
layout_goneMarginStart
:
Int
static
val
layout_goneMarginTop
:
Int
static
val
layout_insetEdge
:
Int
static
val
layout_keyline
:
Int
static
val
layout_optimizationLevel
:
Int
static
val
layout_scrollFlags
:
Int
static
val
layout_scrollInterpolator
:
Int
static
val
liftOnScroll
:
Int
static
val
lineHeight
:
Int
static
val
lineSpacing
:
Int
static
val
listChoiceBackgroundIndicator
:
Int
static
val
listDividerAlertDialog
:
Int
static
val
listItemLayout
:
Int
static
val
listLayout
:
Int
static
val
listMenuViewStyle
:
Int
static
val
listPopupWindowStyle
:
Int
static
val
listPreferredItemHeight
:
Int
static
val
listPreferredItemHeightLarge
:
Int
static
val
listPreferredItemHeightSmall
:
Int
static
val
listPreferredItemPaddingLeft
:
Int
static
val
listPreferredItemPaddingRight
:
Int
static
val
logo
:
Int
static
val
logoDescription
:
Int
static
val
materialButtonStyle
:
Int
static
val
materialCardViewStyle
:
Int
static
val
maxActionInlineWidth
:
Int
static
val
maxButtonHeight
:
Int
static
val
maxImageSize
:
Int
static
val
measureWithLargestChild
:
Int
static
val
menu
:
Int
static
val
multiChoiceItemLayout
:
Int
static
val
navigationContentDescription
:
Int
static
val
navigationIcon
:
Int
static
val
navigationMode
:
Int
static
val
navigationViewStyle
:
Int
static
val
numericModifiers
:
Int
static
val
overlapAnchor
:
Int
static
val
paddingBottomNoButtons
:
Int
static
val
paddingEnd
:
Int
static
val
paddingStart
:
Int
static
val
paddingTopNoTitle
:
Int
static
val
panelBackground
:
Int
static
val
panelMenuListTheme
:
Int
static
val
panelMenuListWidth
:
Int
static
val
passwordToggleContentDescription
:
Int
static
val
passwordToggleDrawable
:
Int
static
val
passwordToggleEnabled
:
Int
static
val
passwordToggleTint
:
Int
static
val
passwordToggleTintMode
:
Int
static
val
popupMenuStyle
:
Int
static
val
popupTheme
:
Int
static
val
popupWindowStyle
:
Int
static
val
preserveIconSpacing
:
Int
static
val
pressedTranslationZ
:
Int
static
val
progressBarPadding
:
Int
static
val
progressBarStyle
:
Int
static
val
queryBackground
:
Int
static
val
queryHint
:
Int
static
val
radioButtonStyle
:
Int
static
val
ratingBarStyle
:
Int
static
val
ratingBarStyleIndicator
:
Int
static
val
ratingBarStyleSmall
:
Int
static
val
reverseLayout
:
Int
static
val
rippleColor
:
Int
static
val
scrimAnimationDuration
:
Int
static
val
scrimBackground
:
Int
static
val
scrimVisibleHeightTrigger
:
Int
static
val
searchHintIcon
:
Int
static
val
searchIcon
:
Int
static
val
searchViewStyle
:
Int
static
val
seekBarStyle
:
Int
static
val
selectableItemBackground
:
Int
static
val
selectableItemBackgroundBorderless
:
Int
static
val
showAsAction
:
Int
static
val
showDividers
:
Int
static
val
showMotionSpec
:
Int
static
val
showText
:
Int
static
val
showTitle
:
Int
static
val
singleChoiceItemLayout
:
Int
static
val
singleLine
:
Int
static
val
singleSelection
:
Int
static
val
snackbarButtonStyle
:
Int
static
val
snackbarStyle
:
Int
static
val
spanCount
:
Int
static
val
spinBars
:
Int
static
val
spinnerDropDownItemStyle
:
Int
static
val
spinnerStyle
:
Int
static
val
splitTrack
:
Int
static
val
srcCompat
:
Int
static
val
stackFromEnd
:
Int
static
val
state_above_anchor
:
Int
static
val
state_collapsed
:
Int
static
val
state_collapsible
:
Int
static
val
state_liftable
:
Int
static
val
state_lifted
:
Int
static
val
statusBarBackground
:
Int
static
val
statusBarScrim
:
Int
static
val
strokeColor
:
Int
static
val
strokeWidth
:
Int
static
val
subMenuArrow
:
Int
static
val
submitBackground
:
Int
static
val
subtitle
:
Int
static
val
subtitleTextAppearance
:
Int
static
val
subtitleTextColor
:
Int
static
val
subtitleTextStyle
:
Int
static
val
suggestionRowLayout
:
Int
static
val
switchMinWidth
:
Int
static
val
switchPadding
:
Int
static
val
switchStyle
:
Int
static
val
switchTextAppearance
:
Int
static
val
tabBackground
:
Int
static
val
tabContentStart
:
Int
static
val
tabGravity
:
Int
static
val
tabIconTint
:
Int
static
val
tabIconTintMode
:
Int
static
val
tabIndicator
:
Int
static
val
tabIndicatorAnimationDuration
:
Int
static
val
tabIndicatorColor
:
Int
static
val
tabIndicatorFullWidth
:
Int
static
val
tabIndicatorGravity
:
Int
static
val
tabIndicatorHeight
:
Int
static
val
tabInlineLabel
:
Int
static
val
tabMaxWidth
:
Int
static
val
tabMinWidth
:
Int
static
val
tabMode
:
Int
static
val
tabPadding
:
Int
static
val
tabPaddingBottom
:
Int
static
val
tabPaddingEnd
:
Int
static
val
tabPaddingStart
:
Int
static
val
tabPaddingTop
:
Int
static
val
tabRippleColor
:
Int
static
val
tabSelectedTextColor
:
Int
static
val
tabStyle
:
Int
static
val
tabTextAppearance
:
Int
static
val
tabTextColor
:
Int
static
val
tabUnboundedRipple
:
Int
static
val
textAllCaps
:
Int
static
val
textAppearanceBody1
:
Int
static
val
textAppearanceBody2
:
Int
static
val
textAppearanceButton
:
Int
static
val
textAppearanceCaption
:
Int
static
val
textAppearanceHeadline1
:
Int
static
val
textAppearanceHeadline2
:
Int
static
val
textAppearanceHeadline3
:
Int
static
val
textAppearanceHeadline4
:
Int
static
val
textAppearanceHeadline5
:
Int
static
val
textAppearanceHeadline6
:
Int
static
val
textAppearanceLargePopupMenu
:
Int
static
val
textAppearanceListItem
:
Int
static
val
textAppearanceListItemSecondary
:
Int
static
val
textAppearanceListItemSmall
:
Int
static
val
textAppearanceOverline
:
Int
static
val
textAppearancePopupMenuHeader
:
Int
static
val
textAppearanceSearchResultSubtitle
:
Int
static
val
textAppearanceSearchResultTitle
:
Int
static
val
textAppearanceSmallPopupMenu
:
Int
static
val
textAppearanceSubtitle1
:
Int
static
val
textAppearanceSubtitle2
:
Int
static
val
textColorAlertDialogListItem
:
Int
static
val
textColorSearchUrl
:
Int
static
val
textEndPadding
:
Int
static
val
textInputStyle
:
Int
static
val
textStartPadding
:
Int
static
val
theme
:
Int
static
val
thickness
:
Int
static
val
thumbTextPadding
:
Int
static
val
thumbTint
:
Int
static
val
thumbTintMode
:
Int
static
val
tickMark
:
Int
static
val
tickMarkTint
:
Int
static
val
tickMarkTintMode
:
Int
static
val
tint
:
Int
static
val
tintMode
:
Int
static
val
title
:
Int
static
val
titleEnabled
:
Int
static
val
titleMargin
:
Int
static
val
titleMarginBottom
:
Int
static
val
titleMarginEnd
:
Int
static
val
titleMarginStart
:
Int
static
val
titleMarginTop
:
Int
static
val
titleMargins
:
Int
static
val
titleTextAppearance
:
Int
static
val
titleTextColor
:
Int
static
val
titleTextStyle
:
Int
static
val
toolbarId
:
Int
static
val
toolbarNavigationButtonStyle
:
Int
static
val
toolbarStyle
:
Int
static
val
tooltipForegroundColor
:
Int
static
val
tooltipFrameBackground
:
Int
static
val
tooltipText
:
Int
static
val
track
:
Int
static
val
trackTint
:
Int
static
val
trackTintMode
:
Int
static
val
ttcIndex
:
Int
static
val
useCompatPadding
:
Int
static
val
viewInflaterClass
:
Int
static
val
voiceIcon
:
Int
static
val
windowActionBar
:
Int
static
val
windowActionBarOverlay
:
Int
static
val
windowActionModeOverlay
:
Int
static
val
windowFixedHeightMajor
:
Int
static
val
windowFixedHeightMinor
:
Int
static
val
windowFixedWidthMajor
:
Int
static
val
windowFixedWidthMinor
:
Int
static
val
windowMinWidthMajor
:
Int
static
val
windowMinWidthMinor
:
Int
static
val
windowNoTitle
:
Int
class
bool
Module Contents
bool
(
)
static
val
abc_action_bar_embed_tabs
:
Int
static
val
abc_allow_stacked_button_bar
:
Int
static
val
abc_config_actionMenuItemAllCaps
:
Int
static
val
mtrl_btn_textappearance_all_caps
:
Int
class
color
Module Contents
color
(
)
static
val
abc_background_cache_hint_selector_material_dark
:
Int
static
val
abc_background_cache_hint_selector_material_light
:
Int
static
val
abc_btn_colored_borderless_text_material
:
Int
static
val
abc_btn_colored_text_material
:
Int
static
val
abc_color_highlight_material
:
Int
static
val
abc_hint_foreground_material_dark
:
Int
static
val
abc_hint_foreground_material_light
:
Int
static
val
abc_input_method_navigation_guard
:
Int
static
val
abc_primary_text_disable_only_material_dark
:
Int
static
val
abc_primary_text_disable_only_material_light
:
Int
static
val
abc_primary_text_material_dark
:
Int
static
val
abc_primary_text_material_light
:
Int
static
val
abc_search_url_text
:
Int
static
val
abc_search_url_text_normal
:
Int
static
val
abc_search_url_text_pressed
:
Int
static
val
abc_search_url_text_selected
:
Int
static
val
abc_secondary_text_material_dark
:
Int
static
val
abc_secondary_text_material_light
:
Int
static
val
abc_tint_btn_checkable
:
Int
static
val
abc_tint_default
:
Int
static
val
abc_tint_edittext
:
Int
static
val
abc_tint_seek_thumb
:
Int
static
val
abc_tint_spinner
:
Int
static
val
abc_tint_switch_track
:
Int
static
val
accent_material_dark
:
Int
static
val
accent_material_light
:
Int
static
val
background_floating_material_dark
:
Int
static
val
background_floating_material_light
:
Int
static
val
background_material_dark
:
Int
static
val
background_material_light
:
Int
static
val
bright_foreground_disabled_material_dark
:
Int
static
val
bright_foreground_disabled_material_light
:
Int
static
val
bright_foreground_inverse_material_dark
:
Int
static
val
bright_foreground_inverse_material_light
:
Int
static
val
bright_foreground_material_dark
:
Int
static
val
bright_foreground_material_light
:
Int
static
val
button_material_dark
:
Int
static
val
button_material_light
:
Int
static
val
cardview_dark_background
:
Int
static
val
cardview_light_background
:
Int
static
val
cardview_shadow_end_color
:
Int
static
val
cardview_shadow_start_color
:
Int
static
val
cityListBackgroundColor
:
Int
static
val
colorAccent
:
Int
static
val
colorAccentDark
:
Int
static
val
colorError
:
Int
static
val
colorPrimary
:
Int
static
val
colorPrimaryDark
:
Int
static
val
colorPrimaryLight
:
Int
static
val
design_bottom_navigation_shadow_color
:
Int
static
val
design_default_color_primary
:
Int
static
val
design_default_color_primary_dark
:
Int
static
val
design_error
:
Int
static
val
design_fab_shadow_end_color
:
Int
static
val
design_fab_shadow_mid_color
:
Int
static
val
design_fab_shadow_start_color
:
Int
static
val
design_fab_stroke_end_inner_color
:
Int
static
val
design_fab_stroke_end_outer_color
:
Int
static
val
design_fab_stroke_top_inner_color
:
Int
static
val
design_fab_stroke_top_outer_color
:
Int
static
val
design_snackbar_background_color
:
Int
static
val
design_tint_password_toggle
:
Int
static
val
dim_foreground_disabled_material_dark
:
Int
static
val
dim_foreground_disabled_material_light
:
Int
static
val
dim_foreground_material_dark
:
Int
static
val
dim_foreground_material_light
:
Int
static
val
error_color_material_dark
:
Int
static
val
error_color_material_light
:
Int
static
val
foreground_material_dark
:
Int
static
val
foreground_material_light
:
Int
static
val
highlighted_text_material_dark
:
Int
static
val
highlighted_text_material_light
:
Int
static
val
ic_launcher_background
:
Int
static
val
loginPageBackgroundColor
:
Int
static
val
material_blue_grey_800
:
Int
static
val
material_blue_grey_900
:
Int
static
val
material_blue_grey_950
:
Int
static
val
material_deep_teal_200
:
Int
static
val
material_deep_teal_500
:
Int
static
val
material_grey_100
:
Int
static
val
material_grey_300
:
Int
static
val
material_grey_50
:
Int
static
val
material_grey_600
:
Int
static
val
material_grey_800
:
Int
static
val
material_grey_850
:
Int
static
val
material_grey_900
:
Int
static
val
mtrl_bottom_nav_colored_item_tint
:
Int
static
val
mtrl_bottom_nav_item_tint
:
Int
static
val
mtrl_btn_bg_color_disabled
:
Int
static
val
mtrl_btn_bg_color_selector
:
Int
static
val
mtrl_btn_ripple_color
:
Int
static
val
mtrl_btn_stroke_color_selector
:
Int
static
val
mtrl_btn_text_btn_ripple_color
:
Int
static
val
mtrl_btn_text_color_disabled
:
Int
static
val
mtrl_btn_text_color_selector
:
Int
static
val
mtrl_btn_transparent_bg_color
:
Int
static
val
mtrl_chip_background_color
:
Int
static
val
mtrl_chip_close_icon_tint
:
Int
static
val
mtrl_chip_ripple_color
:
Int
static
val
mtrl_chip_text_color
:
Int
static
val
mtrl_fab_ripple_color
:
Int
static
val
mtrl_scrim_color
:
Int
static
val
mtrl_tabs_colored_ripple_color
:
Int
static
val
mtrl_tabs_icon_color_selector
:
Int
static
val
mtrl_tabs_icon_color_selector_colored
:
Int
static
val
mtrl_tabs_legacy_text_color_selector
:
Int
static
val
mtrl_tabs_ripple_color
:
Int
static
val
mtrl_text_btn_text_color_selector
:
Int
static
val
mtrl_textinput_default_box_stroke_color
:
Int
static
val
mtrl_textinput_disabled_color
:
Int
static
val
mtrl_textinput_filled_box_default_background_color
:
Int
static
val
mtrl_textinput_hovered_box_stroke_color
:
Int
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
notification_material_background_media_default_color
:
Int
static
val
primary_dark_material_dark
:
Int
static
val
primary_dark_material_light
:
Int
static
val
primary_material_dark
:
Int
static
val
primary_material_light
:
Int
static
val
primary_text_default_material_dark
:
Int
static
val
primary_text_default_material_light
:
Int
static
val
primary_text_disabled_material_dark
:
Int
static
val
primary_text_disabled_material_light
:
Int
static
val
ripple_material_dark
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_dark
:
Int
static
val
secondary_text_default_material_light
:
Int
static
val
secondary_text_disabled_material_dark
:
Int
static
val
secondary_text_disabled_material_light
:
Int
static
val
switch_thumb_disabled_material_dark
:
Int
static
val
switch_thumb_disabled_material_light
:
Int
static
val
switch_thumb_material_dark
:
Int
static
val
switch_thumb_material_light
:
Int
static
val
switch_thumb_normal_material_dark
:
Int
static
val
switch_thumb_normal_material_light
:
Int
static
val
tooltip_background_dark
:
Int
static
val
tooltip_background_light
:
Int
class
dimen
Module Contents
dimen
(
)
static
val
abc_action_bar_content_inset_material
:
Int
static
val
abc_action_bar_content_inset_with_nav
:
Int
static
val
abc_action_bar_default_height_material
:
Int
static
val
abc_action_bar_default_padding_end_material
:
Int
static
val
abc_action_bar_default_padding_start_material
:
Int
static
val
abc_action_bar_elevation_material
:
Int
static
val
abc_action_bar_icon_vertical_padding_material
:
Int
static
val
abc_action_bar_overflow_padding_end_material
:
Int
static
val
abc_action_bar_overflow_padding_start_material
:
Int
static
val
abc_action_bar_stacked_max_height
:
Int
static
val
abc_action_bar_stacked_tab_max_width
:
Int
static
val
abc_action_bar_subtitle_bottom_margin_material
:
Int
static
val
abc_action_bar_subtitle_top_margin_material
:
Int
static
val
abc_action_button_min_height_material
:
Int
static
val
abc_action_button_min_width_material
:
Int
static
val
abc_action_button_min_width_overflow_material
:
Int
static
val
abc_alert_dialog_button_bar_height
:
Int
static
val
abc_alert_dialog_button_dimen
:
Int
static
val
abc_button_inset_horizontal_material
:
Int
static
val
abc_button_inset_vertical_material
:
Int
static
val
abc_button_padding_horizontal_material
:
Int
static
val
abc_button_padding_vertical_material
:
Int
static
val
abc_cascading_menus_min_smallest_width
:
Int
static
val
abc_config_prefDialogWidth
:
Int
static
val
abc_control_corner_material
:
Int
static
val
abc_control_inset_material
:
Int
static
val
abc_control_padding_material
:
Int
static
val
abc_dialog_corner_radius_material
:
Int
static
val
abc_dialog_fixed_height_major
:
Int
static
val
abc_dialog_fixed_height_minor
:
Int
static
val
abc_dialog_fixed_width_major
:
Int
static
val
abc_dialog_fixed_width_minor
:
Int
static
val
abc_dialog_list_padding_bottom_no_buttons
:
Int
static
val
abc_dialog_list_padding_top_no_title
:
Int
static
val
abc_dialog_min_width_major
:
Int
static
val
abc_dialog_min_width_minor
:
Int
static
val
abc_dialog_padding_material
:
Int
static
val
abc_dialog_padding_top_material
:
Int
static
val
abc_dialog_title_divider_material
:
Int
static
val
abc_disabled_alpha_material_dark
:
Int
static
val
abc_disabled_alpha_material_light
:
Int
static
val
abc_dropdownitem_icon_width
:
Int
static
val
abc_dropdownitem_text_padding_left
:
Int
static
val
abc_dropdownitem_text_padding_right
:
Int
static
val
abc_edit_text_inset_bottom_material
:
Int
static
val
abc_edit_text_inset_horizontal_material
:
Int
static
val
abc_edit_text_inset_top_material
:
Int
static
val
abc_floating_window_z
:
Int
static
val
abc_list_item_padding_horizontal_material
:
Int
static
val
abc_panel_menu_list_width
:
Int
static
val
abc_progress_bar_height_material
:
Int
static
val
abc_search_view_preferred_height
:
Int
static
val
abc_search_view_preferred_width
:
Int
static
val
abc_seekbar_track_background_height_material
:
Int
static
val
abc_seekbar_track_progress_height_material
:
Int
static
val
abc_select_dialog_padding_start_material
:
Int
static
val
abc_switch_padding
:
Int
static
val
abc_text_size_body_1_material
:
Int
static
val
abc_text_size_body_2_material
:
Int
static
val
abc_text_size_button_material
:
Int
static
val
abc_text_size_caption_material
:
Int
static
val
abc_text_size_display_1_material
:
Int
static
val
abc_text_size_display_2_material
:
Int
static
val
abc_text_size_display_3_material
:
Int
static
val
abc_text_size_display_4_material
:
Int
static
val
abc_text_size_headline_material
:
Int
static
val
abc_text_size_large_material
:
Int
static
val
abc_text_size_medium_material
:
Int
static
val
abc_text_size_menu_header_material
:
Int
static
val
abc_text_size_menu_material
:
Int
static
val
abc_text_size_small_material
:
Int
static
val
abc_text_size_subhead_material
:
Int
static
val
abc_text_size_subtitle_material_toolbar
:
Int
static
val
abc_text_size_title_material
:
Int
static
val
abc_text_size_title_material_toolbar
:
Int
static
val
activity_horizontal_margin
:
Int
static
val
activity_vertical_margin
:
Int
static
val
cardview_compat_inset_shadow
:
Int
static
val
cardview_default_elevation
:
Int
static
val
cardview_default_radius
:
Int
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
design_appbar_elevation
:
Int
static
val
design_bottom_navigation_active_item_max_width
:
Int
static
val
design_bottom_navigation_active_item_min_width
:
Int
static
val
design_bottom_navigation_active_text_size
:
Int
static
val
design_bottom_navigation_elevation
:
Int
static
val
design_bottom_navigation_height
:
Int
static
val
design_bottom_navigation_icon_size
:
Int
static
val
design_bottom_navigation_item_max_width
:
Int
static
val
design_bottom_navigation_item_min_width
:
Int
static
val
design_bottom_navigation_margin
:
Int
static
val
design_bottom_navigation_shadow_height
:
Int
static
val
design_bottom_navigation_text_size
:
Int
static
val
design_bottom_sheet_modal_elevation
:
Int
static
val
design_bottom_sheet_peek_height_min
:
Int
static
val
design_fab_border_width
:
Int
static
val
design_fab_elevation
:
Int
static
val
design_fab_image_size
:
Int
static
val
design_fab_size_mini
:
Int
static
val
design_fab_size_normal
:
Int
static
val
design_fab_translation_z_hovered_focused
:
Int
static
val
design_fab_translation_z_pressed
:
Int
static
val
design_navigation_elevation
:
Int
static
val
design_navigation_icon_padding
:
Int
static
val
design_navigation_icon_size
:
Int
static
val
design_navigation_item_horizontal_padding
:
Int
static
val
design_navigation_item_icon_padding
:
Int
static
val
design_navigation_max_width
:
Int
static
val
design_navigation_padding_bottom
:
Int
static
val
design_navigation_separator_vertical_padding
:
Int
static
val
design_snackbar_action_inline_max_width
:
Int
static
val
design_snackbar_background_corner_radius
:
Int
static
val
design_snackbar_elevation
:
Int
static
val
design_snackbar_extra_spacing_horizontal
:
Int
static
val
design_snackbar_max_width
:
Int
static
val
design_snackbar_min_width
:
Int
static
val
design_snackbar_padding_horizontal
:
Int
static
val
design_snackbar_padding_vertical
:
Int
static
val
design_snackbar_padding_vertical_2lines
:
Int
static
val
design_snackbar_text_size
:
Int
static
val
design_tab_max_width
:
Int
static
val
design_tab_scrollable_min_width
:
Int
static
val
design_tab_text_size
:
Int
static
val
design_tab_text_size_2line
:
Int
static
val
design_textinput_caption_translate_y
:
Int
static
val
disabled_alpha_material_dark
:
Int
static
val
disabled_alpha_material_light
:
Int
static
val
fastscroll_default_thickness
:
Int
static
val
fastscroll_margin
:
Int
static
val
fastscroll_minimum_range
:
Int
static
val
highlight_alpha_material_colored
:
Int
static
val
highlight_alpha_material_dark
:
Int
static
val
highlight_alpha_material_light
:
Int
static
val
hint_alpha_material_dark
:
Int
static
val
hint_alpha_material_light
:
Int
static
val
hint_pressed_alpha_material_dark
:
Int
static
val
hint_pressed_alpha_material_light
:
Int
static
val
item_touch_helper_max_drag_scroll_per_frame
:
Int
static
val
item_touch_helper_swipe_escape_max_velocity
:
Int
static
val
item_touch_helper_swipe_escape_velocity
:
Int
static
val
mtrl_bottomappbar_fabOffsetEndMode
:
Int
static
val
mtrl_bottomappbar_fab_cradle_margin
:
Int
static
val
mtrl_bottomappbar_fab_cradle_rounded_corner_radius
:
Int
static
val
mtrl_bottomappbar_fab_cradle_vertical_offset
:
Int
static
val
mtrl_bottomappbar_height
:
Int
static
val
mtrl_btn_corner_radius
:
Int
static
val
mtrl_btn_dialog_btn_min_width
:
Int
static
val
mtrl_btn_disabled_elevation
:
Int
static
val
mtrl_btn_disabled_z
:
Int
static
val
mtrl_btn_elevation
:
Int
static
val
mtrl_btn_focused_z
:
Int
static
val
mtrl_btn_hovered_z
:
Int
static
val
mtrl_btn_icon_btn_padding_left
:
Int
static
val
mtrl_btn_icon_padding
:
Int
static
val
mtrl_btn_inset
:
Int
static
val
mtrl_btn_letter_spacing
:
Int
static
val
mtrl_btn_padding_bottom
:
Int
static
val
mtrl_btn_padding_left
:
Int
static
val
mtrl_btn_padding_right
:
Int
static
val
mtrl_btn_padding_top
:
Int
static
val
mtrl_btn_pressed_z
:
Int
static
val
mtrl_btn_stroke_size
:
Int
static
val
mtrl_btn_text_btn_icon_padding
:
Int
static
val
mtrl_btn_text_btn_padding_left
:
Int
static
val
mtrl_btn_text_btn_padding_right
:
Int
static
val
mtrl_btn_text_size
:
Int
static
val
mtrl_btn_z
:
Int
static
val
mtrl_card_elevation
:
Int
static
val
mtrl_card_spacing
:
Int
static
val
mtrl_chip_pressed_translation_z
:
Int
static
val
mtrl_chip_text_size
:
Int
static
val
mtrl_fab_elevation
:
Int
static
val
mtrl_fab_translation_z_hovered_focused
:
Int
static
val
mtrl_fab_translation_z_pressed
:
Int
static
val
mtrl_navigation_elevation
:
Int
static
val
mtrl_navigation_item_horizontal_padding
:
Int
static
val
mtrl_navigation_item_icon_padding
:
Int
static
val
mtrl_snackbar_background_corner_radius
:
Int
static
val
mtrl_snackbar_margin
:
Int
static
val
mtrl_textinput_box_bottom_offset
:
Int
static
val
mtrl_textinput_box_corner_radius_medium
:
Int
static
val
mtrl_textinput_box_corner_radius_small
:
Int
static
val
mtrl_textinput_box_label_cutout_padding
:
Int
static
val
mtrl_textinput_box_padding_end
:
Int
static
val
mtrl_textinput_box_stroke_width_default
:
Int
static
val
mtrl_textinput_box_stroke_width_focused
:
Int
static
val
mtrl_textinput_outline_box_expanded_padding
:
Int
static
val
mtrl_toolbar_default_height
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
static
val
shr_product_card_image_height
:
Int
static
val
shr_product_grid_reveal_height
:
Int
static
val
shr_product_grid_spacing
:
Int
static
val
shr_product_grid_spacing_small
:
Int
static
val
shr_staggered_product_grid_card_height_landscape
:
Int
static
val
shr_staggered_product_grid_card_height_portrait
:
Int
static
val
shr_staggered_product_grid_card_width_landscape
:
Int
static
val
shr_staggered_product_grid_card_width_portrait
:
Int
static
val
shr_staggered_product_grid_margin_top_first
:
Int
static
val
shr_staggered_product_grid_margin_top_second
:
Int
static
val
shr_staggered_product_grid_margin_top_third
:
Int
static
val
shr_staggered_product_grid_spacing_large
:
Int
static
val
shr_staggered_product_grid_spacing_small
:
Int
static
val
subtitle_corner_radius
:
Int
static
val
subtitle_outline_width
:
Int
static
val
subtitle_shadow_offset
:
Int
static
val
subtitle_shadow_radius
:
Int
static
val
tooltip_corner_radius
:
Int
static
val
tooltip_horizontal_padding
:
Int
static
val
tooltip_margin
:
Int
static
val
tooltip_precise_anchor_extra_offset
:
Int
static
val
tooltip_precise_anchor_threshold
:
Int
static
val
tooltip_vertical_padding
:
Int
static
val
tooltip_y_offset_non_touch
:
Int
static
val
tooltip_y_offset_touch
:
Int
class
drawable
Module Contents
drawable
(
)
static
val
abc_ab_share_pack_mtrl_alpha
:
Int
static
val
abc_action_bar_item_background_material
:
Int
static
val
abc_btn_borderless_material
:
Int
static
val
abc_btn_check_material
:
Int
static
val
abc_btn_check_to_on_mtrl_000
:
Int
static
val
abc_btn_check_to_on_mtrl_015
:
Int
static
val
abc_btn_colored_material
:
Int
static
val
abc_btn_default_mtrl_shape
:
Int
static
val
abc_btn_radio_material
:
Int
static
val
abc_btn_radio_to_on_mtrl_000
:
Int
static
val
abc_btn_radio_to_on_mtrl_015
:
Int
static
val
abc_btn_switch_to_on_mtrl_00001
:
Int
static
val
abc_btn_switch_to_on_mtrl_00012
:
Int
static
val
abc_cab_background_internal_bg
:
Int
static
val
abc_cab_background_top_material
:
Int
static
val
abc_cab_background_top_mtrl_alpha
:
Int
static
val
abc_control_background_material
:
Int
static
val
abc_dialog_material_background
:
Int
static
val
abc_edit_text_material
:
Int
static
val
abc_ic_ab_back_material
:
Int
static
val
abc_ic_arrow_drop_right_black_24dp
:
Int
static
val
abc_ic_clear_material
:
Int
static
val
abc_ic_commit_search_api_mtrl_alpha
:
Int
static
val
abc_ic_go_search_api_material
:
Int
static
val
abc_ic_menu_copy_mtrl_am_alpha
:
Int
static
val
abc_ic_menu_cut_mtrl_alpha
:
Int
static
val
abc_ic_menu_overflow_material
:
Int
static
val
abc_ic_menu_paste_mtrl_am_alpha
:
Int
static
val
abc_ic_menu_selectall_mtrl_alpha
:
Int
static
val
abc_ic_menu_share_mtrl_alpha
:
Int
static
val
abc_ic_search_api_material
:
Int
static
val
abc_ic_star_black_16dp
:
Int
static
val
abc_ic_star_black_36dp
:
Int
static
val
abc_ic_star_black_48dp
:
Int
static
val
abc_ic_star_half_black_16dp
:
Int
static
val
abc_ic_star_half_black_36dp
:
Int
static
val
abc_ic_star_half_black_48dp
:
Int
static
val
abc_ic_voice_search_api_material
:
Int
static
val
abc_item_background_holo_dark
:
Int
static
val
abc_item_background_holo_light
:
Int
static
val
abc_list_divider_material
:
Int
static
val
abc_list_divider_mtrl_alpha
:
Int
static
val
abc_list_focused_holo
:
Int
static
val
abc_list_longpressed_holo
:
Int
static
val
abc_list_pressed_holo_dark
:
Int
static
val
abc_list_pressed_holo_light
:
Int
static
val
abc_list_selector_background_transition_holo_dark
:
Int
static
val
abc_list_selector_background_transition_holo_light
:
Int
static
val
abc_list_selector_disabled_holo_dark
:
Int
static
val
abc_list_selector_disabled_holo_light
:
Int
static
val
abc_list_selector_holo_dark
:
Int
static
val
abc_list_selector_holo_light
:
Int
static
val
abc_menu_hardkey_panel_mtrl_mult
:
Int
static
val
abc_popup_background_mtrl_mult
:
Int
static
val
abc_ratingbar_indicator_material
:
Int
static
val
abc_ratingbar_material
:
Int
static
val
abc_ratingbar_small_material
:
Int
static
val
abc_scrubber_control_off_mtrl_alpha
:
Int
static
val
abc_scrubber_control_to_pressed_mtrl_000
:
Int
static
val
abc_scrubber_control_to_pressed_mtrl_005
:
Int
static
val
abc_scrubber_primary_mtrl_alpha
:
Int
static
val
abc_scrubber_track_mtrl_alpha
:
Int
static
val
abc_seekbar_thumb_material
:
Int
static
val
abc_seekbar_tick_mark_material
:
Int
static
val
abc_seekbar_track_material
:
Int
static
val
abc_spinner_mtrl_am_alpha
:
Int
static
val
abc_spinner_textfield_background_material
:
Int
static
val
abc_switch_thumb_material
:
Int
static
val
abc_switch_track_mtrl_alpha
:
Int
static
val
abc_tab_indicator_material
:
Int
static
val
abc_tab_indicator_mtrl_alpha
:
Int
static
val
abc_text_cursor_material
:
Int
static
val
abc_text_select_handle_left_mtrl_dark
:
Int
static
val
abc_text_select_handle_left_mtrl_light
:
Int
static
val
abc_text_select_handle_middle_mtrl_dark
:
Int
static
val
abc_text_select_handle_middle_mtrl_light
:
Int
static
val
abc_text_select_handle_right_mtrl_dark
:
Int
static
val
abc_text_select_handle_right_mtrl_light
:
Int
static
val
abc_textfield_activated_mtrl_alpha
:
Int
static
val
abc_textfield_default_mtrl_alpha
:
Int
static
val
abc_textfield_search_activated_mtrl_alpha
:
Int
static
val
abc_textfield_search_default_mtrl_alpha
:
Int
static
val
abc_textfield_search_material
:
Int
static
val
abc_vector_test
:
Int
static
val
avd_hide_password
:
Int
static
val
avd_show_password
:
Int
static
val
design_bottom_navigation_item_background
:
Int
static
val
design_fab_background
:
Int
static
val
design_ic_visibility
:
Int
static
val
design_ic_visibility_off
:
Int
static
val
design_password_eye
:
Int
static
val
design_snackbar_background
:
Int
static
val
ic_add_24dp
:
Int
static
val
ic_favorite_24dp
:
Int
static
val
ic_favorite_border_24dp
:
Int
static
val
ic_icon
:
Int
static
val
ic_launcher_background
:
Int
static
val
ic_launcher_foreground
:
Int
static
val
ic_mtrl_chip_checked_black
:
Int
static
val
ic_mtrl_chip_checked_circle
:
Int
static
val
ic_mtrl_chip_close_circle
:
Int
static
val
ic_no_internet_background
:
Int
static
val
ic_registration_background
:
Int
static
val
ic_search_24dp
:
Int
static
val
ic_star_border_16dp
:
Int
static
val
mtrl_snackbar_background
:
Int
static
val
mtrl_tabs_default_indicator
:
Int
static
val
navigation_empty_icon
:
Int
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
static
val
tooltip_frame_dark
:
Int
static
val
tooltip_frame_light
:
Int
class
id
Module Contents
id
(
)
static
val
ALT
:
Int
static
val
CTRL
:
Int
static
val
FUNCTION
:
Int
static
val
META
:
Int
static
val
SHIFT
:
Int
static
val
SYM
:
Int
static
val
account_menu
:
Int
static
val
action0
:
Int
static
val
action_bar
:
Int
static
val
action_bar_activity_content
:
Int
static
val
action_bar_container
:
Int
static
val
action_bar_root
:
Int
static
val
action_bar_spinner
:
Int
static
val
action_bar_subtitle
:
Int
static
val
action_bar_title
:
Int
static
val
action_container
:
Int
static
val
action_context_bar
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_menu_divider
:
Int
static
val
action_menu_presenter
:
Int
static
val
action_mode_bar
:
Int
static
val
action_mode_bar_stub
:
Int
static
val
action_mode_close_button
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
activity_chooser_view_content
:
Int
static
val
add
:
Int
static
val
alertTitle
:
Int
static
val
all
:
Int
static
val
always
:
Int
static
val
amount_of_likes
:
Int
static
val
amount_of_posts
:
Int
static
val
async
:
Int
static
val
author_name
:
Int
static
val
auto
:
Int
static
val
back_button
:
Int
static
val
barrier
:
Int
static
val
beginning
:
Int
static
val
blocking
:
Int
static
val
bottom
:
Int
static
val
buttonPanel
:
Int
static
val
cancel_action
:
Int
static
val
center
:
Int
static
val
center_horizontal
:
Int
static
val
center_vertical
:
Int
static
val
chains
:
Int
static
val
checkbox
:
Int
static
val
chronometer
:
Int
static
val
city_image
:
Int
static
val
city_list
:
Int
static
val
city_text
:
Int
static
val
clip_horizontal
:
Int
static
val
clip_vertical
:
Int
static
val
collapseActionView
:
Int
static
val
confirm_password_edit_text_reg
:
Int
static
val
confirm_password_text_input_reg
:
Int
static
val
confirm_registreer_button
:
Int
static
val
container
:
Int
static
val
container_add_post
:
Int
static
val
content
:
Int
static
val
contentPanel
:
Int
static
val
coordinator
:
Int
static
val
custom
:
Int
static
val
customPanel
:
Int
static
val
date_post
:
Int
static
val
decor_content_parent
:
Int
static
val
default_activity_button
:
Int
static
val
design_bottom_sheet
:
Int
static
val
design_menu_item_action_area
:
Int
static
val
design_menu_item_action_area_stub
:
Int
static
val
design_menu_item_text
:
Int
static
val
design_navigation_view
:
Int
static
val
dimensions
:
Int
static
val
direct
:
Int
static
val
disableHome
:
Int
static
val
edit_query
:
Int
static
val
end
:
Int
static
val
end_padder
:
Int
static
val
enterAlways
:
Int
static
val
enterAlwaysCollapsed
:
Int
static
val
exitUntilCollapsed
:
Int
static
val
expand_activities_button
:
Int
static
val
expanded_menu
:
Int
static
val
fill
:
Int
static
val
fill_horizontal
:
Int
static
val
fill_vertical
:
Int
static
val
filled
:
Int
static
val
fixed
:
Int
static
val
floatingActionButton
:
Int
static
val
forever
:
Int
static
val
ghost_view
:
Int
static
val
gone
:
Int
static
val
group_divider
:
Int
static
val
groups
:
Int
static
val
home
:
Int
static
val
homeAsUp
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
ifRoom
:
Int
static
val
image
:
Int
static
val
imageView
:
Int
static
val
info
:
Int
static
val
invisible
:
Int
static
val
italic
:
Int
static
val
item_touch_helper_previous_elevation
:
Int
static
val
labeled
:
Int
static
val
largeLabel
:
Int
static
val
left
:
Int
static
val
like_action_button
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
listMode
:
Int
static
val
list_item
:
Int
static
val
masked
:
Int
static
val
media_actions
:
Int
static
val
message
:
Int
static
val
middle
:
Int
static
val
mini
:
Int
static
val
mtrl_child_content_container
:
Int
static
val
mtrl_internal_children_alpha_tag
:
Int
static
val
multiply
:
Int
static
val
navigation_header_container
:
Int
static
val
never
:
Int
static
val
next_button
:
Int
static
val
none
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
outline
:
Int
static
val
packed
:
Int
static
val
parallax
:
Int
static
val
parent
:
Int
static
val
parentPanel
:
Int
static
val
parent_matrix
:
Int
static
val
password_edit_text
:
Int
static
val
password_edit_text_reg
:
Int
static
val
password_text_input
:
Int
static
val
password_text_input_reg
:
Int
static
val
percent
:
Int
static
val
pin
:
Int
static
val
post_body
:
Int
static
val
post_body_edit_text
:
Int
static
val
post_body_text_input
:
Int
static
val
post_button
:
Int
static
val
post_title_edit_text
:
Int
static
val
post_title_text_input
:
Int
static
val
progress_circular
:
Int
static
val
progress_horizontal
:
Int
static
val
radio
:
Int
static
val
recycleView
:
Int
static
val
recycler_view
:
Int
static
val
recycler_view_posts
:
Int
static
val
registreer_button
:
Int
static
val
right
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
save_image_matrix
:
Int
static
val
save_non_transition_alpha
:
Int
static
val
save_scale_type
:
Int
static
val
screen
:
Int
static
val
scroll
:
Int
static
val
scrollIndicatorDown
:
Int
static
val
scrollIndicatorUp
:
Int
static
val
scrollView
:
Int
static
val
scrollable
:
Int
static
val
search_badge
:
Int
static
val
search_bar
:
Int
static
val
search_button
:
Int
static
val
search_close_btn
:
Int
static
val
search_edit_frame
:
Int
static
val
search_go_btn
:
Int
static
val
search_mag_icon
:
Int
static
val
search_menu
:
Int
static
val
search_plate
:
Int
static
val
search_src_text
:
Int
static
val
search_voice_btn
:
Int
static
val
select_dialog_listview
:
Int
static
val
selected
:
Int
static
val
shortcut
:
Int
static
val
showCustom
:
Int
static
val
showHome
:
Int
static
val
showTitle
:
Int
static
val
smallLabel
:
Int
static
val
snackbar_action
:
Int
static
val
snackbar_text
:
Int
static
val
snap
:
Int
static
val
snapMargins
:
Int
static
val
spacer
:
Int
static
val
spinner_pinboards
:
Int
static
val
split_action_bar
:
Int
static
val
spread
:
Int
static
val
spread_inside
:
Int
static
val
src_atop
:
Int
static
val
src_in
:
Int
static
val
src_over
:
Int
static
val
standard
:
Int
static
val
start
:
Int
static
val
status_bar_latest_event_content
:
Int
static
val
stretch
:
Int
static
val
submenuarrow
:
Int
static
val
submit_area
:
Int
static
val
tabMode
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
textSpacerNoButtons
:
Int
static
val
textSpacerNoTitle
:
Int
static
val
textStart
:
Int
static
val
textView2
:
Int
static
val
text_input_password_toggle
:
Int
static
val
textinput_counter
:
Int
static
val
textinput_error
:
Int
static
val
textinput_helper_text
:
Int
static
val
time
:
Int
static
val
title
:
Int
static
val
titleDividerNoCustom
:
Int
static
val
title_post
:
Int
static
val
title_template
:
Int
static
val
top
:
Int
static
val
topPanel
:
Int
static
val
touch_outside
:
Int
static
val
transition_current_scene
:
Int
static
val
transition_layout_save
:
Int
static
val
transition_position
:
Int
static
val
transition_scene_layoutid_cache
:
Int
static
val
transition_transform
:
Int
static
val
uniform
:
Int
static
val
unlabeled
:
Int
static
val
up
:
Int
static
val
useLogo
:
Int
static
val
username_edit_text
:
Int
static
val
username_edit_text_reg
:
Int
static
val
username_text_input
:
Int
static
val
username_text_input_reg
:
Int
static
val
view_offset_helper
:
Int
static
val
visible
:
Int
static
val
withText
:
Int
static
val
wrap
:
Int
static
val
wrap_content
:
Int
class
integer
Module Contents
integer
(
)
static
val
abc_config_activityDefaultDur
:
Int
static
val
abc_config_activityShortDur
:
Int
static
val
app_bar_elevation_anim_duration
:
Int
static
val
bottom_sheet_slide_duration
:
Int
static
val
cancel_button_image_alpha
:
Int
static
val
config_tooltipAnimTime
:
Int
static
val
design_snackbar_text_max_lines
:
Int
static
val
design_tab_indicator_anim_duration_ms
:
Int
static
val
hide_password_duration
:
Int
static
val
mtrl_btn_anim_delay_ms
:
Int
static
val
mtrl_btn_anim_duration_ms
:
Int
static
val
mtrl_chip_anim_duration
:
Int
static
val
mtrl_tab_indicator_anim_duration_ms
:
Int
static
val
show_password_duration
:
Int
static
val
status_bar_notification_info_maxnum
:
Int
class
interpolator
Module Contents
interpolator
(
)
static
val
mtrl_fast_out_linear_in
:
Int
static
val
mtrl_fast_out_slow_in
:
Int
static
val
mtrl_linear
:
Int
static
val
mtrl_linear_out_slow_in
:
Int
class
layout
Module Contents
layout
(
)
static
val
abc_action_bar_title_item
:
Int
static
val
abc_action_bar_up_container
:
Int
static
val
abc_action_menu_item_layout
:
Int
static
val
abc_action_menu_layout
:
Int
static
val
abc_action_mode_bar
:
Int
static
val
abc_action_mode_close_item_material
:
Int
static
val
abc_activity_chooser_view
:
Int
static
val
abc_activity_chooser_view_list_item
:
Int
static
val
abc_alert_dialog_button_bar_material
:
Int
static
val
abc_alert_dialog_material
:
Int
static
val
abc_alert_dialog_title_material
:
Int
static
val
abc_cascading_menu_item_layout
:
Int
static
val
abc_dialog_title_material
:
Int
static
val
abc_expanded_menu_layout
:
Int
static
val
abc_list_menu_item_checkbox
:
Int
static
val
abc_list_menu_item_icon
:
Int
static
val
abc_list_menu_item_layout
:
Int
static
val
abc_list_menu_item_radio
:
Int
static
val
abc_popup_menu_header_item_layout
:
Int
static
val
abc_popup_menu_item_layout
:
Int
static
val
abc_screen_content_include
:
Int
static
val
abc_screen_simple
:
Int
static
val
abc_screen_simple_overlay_action_mode
:
Int
static
val
abc_screen_toolbar
:
Int
static
val
abc_search_dropdown_item_icons_2line
:
Int
static
val
abc_search_view
:
Int
static
val
abc_select_dialog_material
:
Int
static
val
abc_tooltip
:
Int
static
val
account_fragment
:
Int
static
val
activity_main
:
Int
static
val
activity_pinboard_details
:
Int
static
val
activity_pinboards
:
Int
static
val
add_post_fragment
:
Int
static
val
design_bottom_navigation_item
:
Int
static
val
design_bottom_sheet_dialog
:
Int
static
val
design_layout_snackbar
:
Int
static
val
design_layout_snackbar_include
:
Int
static
val
design_layout_tab_icon
:
Int
static
val
design_layout_tab_text
:
Int
static
val
design_menu_item_action_area
:
Int
static
val
design_navigation_item
:
Int
static
val
design_navigation_item_header
:
Int
static
val
design_navigation_item_separator
:
Int
static
val
design_navigation_item_subheader
:
Int
static
val
design_navigation_menu
:
Int
static
val
design_navigation_menu_item
:
Int
static
val
design_text_input_password_icon
:
Int
static
val
geen_internet_fragment
:
Int
static
val
login_fragment
:
Int
static
val
mtrl_layout_snackbar
:
Int
static
val
mtrl_layout_snackbar_include
:
Int
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_media_action
:
Int
static
val
notification_media_cancel_action
:
Int
static
val
notification_template_big_media
:
Int
static
val
notification_template_big_media_custom
:
Int
static
val
notification_template_big_media_narrow
:
Int
static
val
notification_template_big_media_narrow_custom
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_lines_media
:
Int
static
val
notification_template_media
:
Int
static
val
notification_template_media_custom
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
static
val
pinboard_item
:
Int
static
val
pinboard_list_fragment
:
Int
static
val
post_item
:
Int
static
val
registreer_fragment
:
Int
static
val
select_dialog_item_material
:
Int
static
val
select_dialog_multichoice_material
:
Int
static
val
select_dialog_singlechoice_material
:
Int
static
val
support_simple_spinner_dropdown_item
:
Int
class
menu
Module Contents
menu
(
)
static
val
search_menu
:
Int
class
mipmap
Module Contents
mipmap
(
)
static
val
ic_launcher
:
Int
static
val
ic_launcher_foreground
:
Int
static
val
ic_launcher_round
:
Int
class
string
Module Contents
string
(
)
static
val
abc_action_bar_home_description
:
Int
static
val
abc_action_bar_up_description
:
Int
static
val
abc_action_menu_overflow_description
:
Int
static
val
abc_action_mode_done
:
Int
static
val
abc_activity_chooser_view_see_all
:
Int
static
val
abc_activitychooserview_choose_application
:
Int
static
val
abc_capital_off
:
Int
static
val
abc_capital_on
:
Int
static
val
abc_font_family_body_1_material
:
Int
static
val
abc_font_family_body_2_material
:
Int
static
val
abc_font_family_button_material
:
Int
static
val
abc_font_family_caption_material
:
Int
static
val
abc_font_family_display_1_material
:
Int
static
val
abc_font_family_display_2_material
:
Int
static
val
abc_font_family_display_3_material
:
Int
static
val
abc_font_family_display_4_material
:
Int
static
val
abc_font_family_headline_material
:
Int
static
val
abc_font_family_menu_material
:
Int
static
val
abc_font_family_subhead_material
:
Int
static
val
abc_font_family_title_material
:
Int
static
val
abc_menu_alt_shortcut_label
:
Int
static
val
abc_menu_ctrl_shortcut_label
:
Int
static
val
abc_menu_delete_shortcut_label
:
Int
static
val
abc_menu_enter_shortcut_label
:
Int
static
val
abc_menu_function_shortcut_label
:
Int
static
val
abc_menu_meta_shortcut_label
:
Int
static
val
abc_menu_shift_shortcut_label
:
Int
static
val
abc_menu_space_shortcut_label
:
Int
static
val
abc_menu_sym_shortcut_label
:
Int
static
val
abc_prepend_shortcut_label
:
Int
static
val
abc_search_hint
:
Int
static
val
abc_searchview_description_clear
:
Int
static
val
abc_searchview_description_query
:
Int
static
val
abc_searchview_description_search
:
Int
static
val
abc_searchview_description_submit
:
Int
static
val
abc_searchview_description_voice
:
Int
static
val
abc_shareactionprovider_share_with
:
Int
static
val
abc_shareactionprovider_share_with_application
:
Int
static
val
abc_toolbar_collapse_description
:
Int
static
val
add_post_title
:
Int
static
val
app_name
:
Int
static
val
appbar_scrolling_view_behavior
:
Int
static
val
back_button
:
Int
static
val
bottom_sheet_behavior
:
Int
static
val
character_counter_content_description
:
Int
static
val
character_counter_pattern
:
Int
static
val
error_confirm_password
:
Int
static
val
error_password
:
Int
static
val
error_post_field_empty
:
Int
static
val
error_useralreadyexists
:
Int
static
val
error_username
:
Int
static
val
error_wrong_user_or_password
:
Int
static
val
fab_transformation_scrim_behavior
:
Int
static
val
fab_transformation_sheet_behavior
:
Int
static
val
hide_bottom_view_on_scroll_behavior
:
Int
static
val
hint_confirm_password
:
Int
static
val
hint_password
:
Int
static
val
hint_post_body
:
Int
static
val
hint_post_title
:
Int
static
val
hint_search
:
Int
static
val
hint_username
:
Int
static
val
key_pinboard
:
Int
static
val
mtrl_chip_close_icon_content_description
:
Int
static
val
next_button
:
Int
static
val
no_internet_connection
:
Int
static
val
no_internet_connection_description
:
Int
static
val
no_internet_connection_solution
:
Int
static
val
password_toggle_content_description
:
Int
static
val
path_password_eye
:
Int
static
val
path_password_eye_mask_strike_through
:
Int
static
val
path_password_eye_mask_visible
:
Int
static
val
path_password_strike_through
:
Int
static
val
pinboard_card_amount_of_posts
:
Int
static
val
pinboard_details_title
:
Int
static
val
post_button
:
Int
static
val
register_button
:
Int
static
val
registration_background_description
:
Int
static
val
search_menu_title
:
Int
static
val
something_went_wrong
:
Int
static
val
sp_token_key
:
Int
static
val
sp_token_likedPosts
:
Int
static
val
sp_token_password
:
Int
static
val
sp_token_username
:
Int
static
val
status_bar_notification_info_overflow
:
Int
static
val
you_are_offline
:
Int
class
style
Module Contents
style
(
)
static
val
AlertDialog_AppCompat
:
Int
static
val
AlertDialog_AppCompat_Light
:
Int
static
val
Animation_AppCompat_Dialog
:
Int
static
val
Animation_AppCompat_DropDownUp
:
Int
static
val
Animation_AppCompat_Tooltip
:
Int
static
val
Animation_Design_BottomSheetDialog
:
Int
static
val
Base_AlertDialog_AppCompat
:
Int
static
val
Base_AlertDialog_AppCompat_Light
:
Int
static
val
Base_Animation_AppCompat_Dialog
:
Int
static
val
Base_Animation_AppCompat_DropDownUp
:
Int
static
val
Base_Animation_AppCompat_Tooltip
:
Int
static
val
Base_CardView
:
Int
static
val
Base_DialogWindowTitleBackground_AppCompat
:
Int
static
val
Base_DialogWindowTitle_AppCompat
:
Int
static
val
Base_TextAppearance_AppCompat
:
Int
static
val
Base_TextAppearance_AppCompat_Body1
:
Int
static
val
Base_TextAppearance_AppCompat_Body2
:
Int
static
val
Base_TextAppearance_AppCompat_Button
:
Int
static
val
Base_TextAppearance_AppCompat_Caption
:
Int
static
val
Base_TextAppearance_AppCompat_Display1
:
Int
static
val
Base_TextAppearance_AppCompat_Display2
:
Int
static
val
Base_TextAppearance_AppCompat_Display3
:
Int
static
val
Base_TextAppearance_AppCompat_Display4
:
Int
static
val
Base_TextAppearance_AppCompat_Headline
:
Int
static
val
Base_TextAppearance_AppCompat_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Large
:
Int
static
val
Base_TextAppearance_AppCompat_Large_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
:
Int
static
val
Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
:
Int
static
val
Base_TextAppearance_AppCompat_Medium
:
Int
static
val
Base_TextAppearance_AppCompat_Medium_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Menu
:
Int
static
val
Base_TextAppearance_AppCompat_SearchResult
:
Int
static
val
Base_TextAppearance_AppCompat_SearchResult_Subtitle
:
Int
static
val
Base_TextAppearance_AppCompat_SearchResult_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Small
:
Int
static
val
Base_TextAppearance_AppCompat_Small_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Subhead
:
Int
static
val
Base_TextAppearance_AppCompat_Subhead_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Title_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Tooltip
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Menu
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionMode_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button_Colored
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_DropDownItem
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_PopupMenu_Header
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_PopupMenu_Large
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_PopupMenu_Small
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Switch
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem
:
Int
static
val
Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item
:
Int
static
val
Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle
:
Int
static
val
Base_TextAppearance_Widget_AppCompat_Toolbar_Title
:
Int
static
val
Base_ThemeOverlay_AppCompat
:
Int
static
val
Base_ThemeOverlay_AppCompat_ActionBar
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dark
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dark_ActionBar
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dialog
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dialog_Alert
:
Int
static
val
Base_ThemeOverlay_AppCompat_Light
:
Int
static
val
Base_ThemeOverlay_MaterialComponents_Dialog
:
Int
static
val
Base_ThemeOverlay_MaterialComponents_Dialog_Alert
:
Int
static
val
Base_Theme_AppCompat
:
Int
static
val
Base_Theme_AppCompat_CompactMenu
:
Int
static
val
Base_Theme_AppCompat_Dialog
:
Int
static
val
Base_Theme_AppCompat_DialogWhenLarge
:
Int
static
val
Base_Theme_AppCompat_Dialog_Alert
:
Int
static
val
Base_Theme_AppCompat_Dialog_FixedSize
:
Int
static
val
Base_Theme_AppCompat_Dialog_MinWidth
:
Int
static
val
Base_Theme_AppCompat_Light
:
Int
static
val
Base_Theme_AppCompat_Light_DarkActionBar
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog
:
Int
static
val
Base_Theme_AppCompat_Light_DialogWhenLarge
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog_Alert
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog_FixedSize
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog_MinWidth
:
Int
static
val
Base_Theme_MaterialComponents
:
Int
static
val
Base_Theme_MaterialComponents_Bridge
:
Int
static
val
Base_Theme_MaterialComponents_CompactMenu
:
Int
static
val
Base_Theme_MaterialComponents_Dialog
:
Int
static
val
Base_Theme_MaterialComponents_DialogWhenLarge
:
Int
static
val
Base_Theme_MaterialComponents_Dialog_Alert
:
Int
static
val
Base_Theme_MaterialComponents_Dialog_FixedSize
:
Int
static
val
Base_Theme_MaterialComponents_Dialog_MinWidth
:
Int
static
val
Base_Theme_MaterialComponents_Light
:
Int
static
val
Base_Theme_MaterialComponents_Light_Bridge
:
Int
static
val
Base_Theme_MaterialComponents_Light_DarkActionBar
:
Int
static
val
Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge
:
Int
static
val
Base_Theme_MaterialComponents_Light_Dialog
:
Int
static
val
Base_Theme_MaterialComponents_Light_DialogWhenLarge
:
Int
static
val
Base_Theme_MaterialComponents_Light_Dialog_Alert
:
Int
static
val
Base_Theme_MaterialComponents_Light_Dialog_FixedSize
:
Int
static
val
Base_Theme_MaterialComponents_Light_Dialog_MinWidth
:
Int
static
val
Base_V14_ThemeOverlay_MaterialComponents_Dialog
:
Int
static
val
Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert
:
Int
static
val
Base_V14_Theme_MaterialComponents
:
Int
static
val
Base_V14_Theme_MaterialComponents_Bridge
:
Int
static
val
Base_V14_Theme_MaterialComponents_Dialog
:
Int
static
val
Base_V14_Theme_MaterialComponents_Light
:
Int
static
val
Base_V14_Theme_MaterialComponents_Light_Bridge
:
Int
static
val
Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge
:
Int
static
val
Base_V14_Theme_MaterialComponents_Light_Dialog
:
Int
static
val
Base_V21_ThemeOverlay_AppCompat_Dialog
:
Int
static
val
Base_V21_Theme_AppCompat
:
Int
static
val
Base_V21_Theme_AppCompat_Dialog
:
Int
static
val
Base_V21_Theme_AppCompat_Light
:
Int
static
val
Base_V21_Theme_AppCompat_Light_Dialog
:
Int
static
val
Base_V22_Theme_AppCompat
:
Int
static
val
Base_V22_Theme_AppCompat_Light
:
Int
static
val
Base_V23_Theme_AppCompat
:
Int
static
val
Base_V23_Theme_AppCompat_Light
:
Int
static
val
Base_V26_Theme_AppCompat
:
Int
static
val
Base_V26_Theme_AppCompat_Light
:
Int
static
val
Base_V26_Widget_AppCompat_Toolbar
:
Int
static
val
Base_V28_Theme_AppCompat
:
Int
static
val
Base_V28_Theme_AppCompat_Light
:
Int
static
val
Base_V7_ThemeOverlay_AppCompat_Dialog
:
Int
static
val
Base_V7_Theme_AppCompat
:
Int
static
val
Base_V7_Theme_AppCompat_Dialog
:
Int
static
val
Base_V7_Theme_AppCompat_Light
:
Int
static
val
Base_V7_Theme_AppCompat_Light_Dialog
:
Int
static
val
Base_V7_Widget_AppCompat_AutoCompleteTextView
:
Int
static
val
Base_V7_Widget_AppCompat_EditText
:
Int
static
val
Base_V7_Widget_AppCompat_Toolbar
:
Int
static
val
Base_Widget_AppCompat_ActionBar
:
Int
static
val
Base_Widget_AppCompat_ActionBar_Solid
:
Int
static
val
Base_Widget_AppCompat_ActionBar_TabBar
:
Int
static
val
Base_Widget_AppCompat_ActionBar_TabText
:
Int
static
val
Base_Widget_AppCompat_ActionBar_TabView
:
Int
static
val
Base_Widget_AppCompat_ActionButton
:
Int
static
val
Base_Widget_AppCompat_ActionButton_CloseMode
:
Int
static
val
Base_Widget_AppCompat_ActionButton_Overflow
:
Int
static
val
Base_Widget_AppCompat_ActionMode
:
Int
static
val
Base_Widget_AppCompat_ActivityChooserView
:
Int
static
val
Base_Widget_AppCompat_AutoCompleteTextView
:
Int
static
val
Base_Widget_AppCompat_Button
:
Int
static
val
Base_Widget_AppCompat_ButtonBar
:
Int
static
val
Base_Widget_AppCompat_ButtonBar_AlertDialog
:
Int
static
val
Base_Widget_AppCompat_Button_Borderless
:
Int
static
val
Base_Widget_AppCompat_Button_Borderless_Colored
:
Int
static
val
Base_Widget_AppCompat_Button_ButtonBar_AlertDialog
:
Int
static
val
Base_Widget_AppCompat_Button_Colored
:
Int
static
val
Base_Widget_AppCompat_Button_Small
:
Int
static
val
Base_Widget_AppCompat_CompoundButton_CheckBox
:
Int
static
val
Base_Widget_AppCompat_CompoundButton_RadioButton
:
Int
static
val
Base_Widget_AppCompat_CompoundButton_Switch
:
Int
static
val
Base_Widget_AppCompat_DrawerArrowToggle
:
Int
static
val
Base_Widget_AppCompat_DrawerArrowToggle_Common
:
Int
static
val
Base_Widget_AppCompat_DropDownItem_Spinner
:
Int
static
val
Base_Widget_AppCompat_EditText
:
Int
static
val
Base_Widget_AppCompat_ImageButton
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_Solid
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabBar
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabText
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabView
:
Int
static
val
Base_Widget_AppCompat_Light_PopupMenu
:
Int
static
val
Base_Widget_AppCompat_Light_PopupMenu_Overflow
:
Int
static
val
Base_Widget_AppCompat_ListMenuView
:
Int
static
val
Base_Widget_AppCompat_ListPopupWindow
:
Int
static
val
Base_Widget_AppCompat_ListView
:
Int
static
val
Base_Widget_AppCompat_ListView_DropDown
:
Int
static
val
Base_Widget_AppCompat_ListView_Menu
:
Int
static
val
Base_Widget_AppCompat_PopupMenu
:
Int
static
val
Base_Widget_AppCompat_PopupMenu_Overflow
:
Int
static
val
Base_Widget_AppCompat_PopupWindow
:
Int
static
val
Base_Widget_AppCompat_ProgressBar
:
Int
static
val
Base_Widget_AppCompat_ProgressBar_Horizontal
:
Int
static
val
Base_Widget_AppCompat_RatingBar
:
Int
static
val
Base_Widget_AppCompat_RatingBar_Indicator
:
Int
static
val
Base_Widget_AppCompat_RatingBar_Small
:
Int
static
val
Base_Widget_AppCompat_SearchView
:
Int
static
val
Base_Widget_AppCompat_SearchView_ActionBar
:
Int
static
val
Base_Widget_AppCompat_SeekBar
:
Int
static
val
Base_Widget_AppCompat_SeekBar_Discrete
:
Int
static
val
Base_Widget_AppCompat_Spinner
:
Int
static
val
Base_Widget_AppCompat_Spinner_Underlined
:
Int
static
val
Base_Widget_AppCompat_TextView_SpinnerItem
:
Int
static
val
Base_Widget_AppCompat_Toolbar
:
Int
static
val
Base_Widget_AppCompat_Toolbar_Button_Navigation
:
Int
static
val
Base_Widget_Design_TabLayout
:
Int
static
val
Base_Widget_MaterialComponents_Chip
:
Int
static
val
Base_Widget_MaterialComponents_TextInputEditText
:
Int
static
val
Base_Widget_MaterialComponents_TextInputLayout
:
Int
static
val
CardView
:
Int
static
val
CardView_Dark
:
Int
static
val
CardView_Light
:
Int
static
val
Platform_AppCompat
:
Int
static
val
Platform_AppCompat_Light
:
Int
static
val
Platform_MaterialComponents
:
Int
static
val
Platform_MaterialComponents_Dialog
:
Int
static
val
Platform_MaterialComponents_Light
:
Int
static
val
Platform_MaterialComponents_Light_Dialog
:
Int
static
val
Platform_ThemeOverlay_AppCompat
:
Int
static
val
Platform_ThemeOverlay_AppCompat_Dark
:
Int
static
val
Platform_ThemeOverlay_AppCompat_Light
:
Int
static
val
Platform_V21_AppCompat
:
Int
static
val
Platform_V21_AppCompat_Light
:
Int
static
val
Platform_V25_AppCompat
:
Int
static
val
Platform_V25_AppCompat_Light
:
Int
static
val
Platform_Widget_AppCompat_Spinner
:
Int
static
val
RtlOverlay_DialogWindowTitle_AppCompat
:
Int
static
val
RtlOverlay_Widget_AppCompat_ActionBar_TitleItem
:
Int
static
val
RtlOverlay_Widget_AppCompat_DialogTitle_Icon
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_Text
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_Title
:
Int
static
val
RtlOverlay_Widget_AppCompat_SearchView_MagIcon
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Query
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Text
:
Int
static
val
RtlUnderlay_Widget_AppCompat_ActionButton
:
Int
static
val
RtlUnderlay_Widget_AppCompat_ActionButton_Overflow
:
Int
static
val
TextAppearance_AppCompat
:
Int
static
val
TextAppearance_AppCompat_Body1
:
Int
static
val
TextAppearance_AppCompat_Body2
:
Int
static
val
TextAppearance_AppCompat_Button
:
Int
static
val
TextAppearance_AppCompat_Caption
:
Int
static
val
TextAppearance_AppCompat_Display1
:
Int
static
val
TextAppearance_AppCompat_Display2
:
Int
static
val
TextAppearance_AppCompat_Display3
:
Int
static
val
TextAppearance_AppCompat_Display4
:
Int
static
val
TextAppearance_AppCompat_Headline
:
Int
static
val
TextAppearance_AppCompat_Inverse
:
Int
static
val
TextAppearance_AppCompat_Large
:
Int
static
val
TextAppearance_AppCompat_Large_Inverse
:
Int
static
val
TextAppearance_AppCompat_Light_SearchResult_Subtitle
:
Int
static
val
TextAppearance_AppCompat_Light_SearchResult_Title
:
Int
static
val
TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
:
Int
static
val
TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
:
Int
static
val
TextAppearance_AppCompat_Medium
:
Int
static
val
TextAppearance_AppCompat_Medium_Inverse
:
Int
static
val
TextAppearance_AppCompat_Menu
:
Int
static
val
TextAppearance_AppCompat_SearchResult_Subtitle
:
Int
static
val
TextAppearance_AppCompat_SearchResult_Title
:
Int
static
val
TextAppearance_AppCompat_Small
:
Int
static
val
TextAppearance_AppCompat_Small_Inverse
:
Int
static
val
TextAppearance_AppCompat_Subhead
:
Int
static
val
TextAppearance_AppCompat_Subhead_Inverse
:
Int
static
val
TextAppearance_AppCompat_Title
:
Int
static
val
TextAppearance_AppCompat_Title_Inverse
:
Int
static
val
TextAppearance_AppCompat_Tooltip
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Menu
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Subtitle
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Title
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Subtitle
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Title
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_Button
:
Int
static
val
TextAppearance_AppCompat_Widget_Button_Borderless_Colored
:
Int
static
val
TextAppearance_AppCompat_Widget_Button_Colored
:
Int
static
val
TextAppearance_AppCompat_Widget_Button_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_DropDownItem
:
Int
static
val
TextAppearance_AppCompat_Widget_PopupMenu_Header
:
Int
static
val
TextAppearance_AppCompat_Widget_PopupMenu_Large
:
Int
static
val
TextAppearance_AppCompat_Widget_PopupMenu_Small
:
Int
static
val
TextAppearance_AppCompat_Widget_Switch
:
Int
static
val
TextAppearance_AppCompat_Widget_TextView_SpinnerItem
:
Int
static
val
TextAppearance_CityPinboard_Title
:
Int
static
val
TextAppearance_CityPinboard_Toolbar
:
Int
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Info_Media
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Line2_Media
:
Int
static
val
TextAppearance_Compat_Notification_Media
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Time_Media
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
TextAppearance_Compat_Notification_Title_Media
:
Int
static
val
TextAppearance_Design_CollapsingToolbar_Expanded
:
Int
static
val
TextAppearance_Design_Counter
:
Int
static
val
TextAppearance_Design_Counter_Overflow
:
Int
static
val
TextAppearance_Design_Error
:
Int
static
val
TextAppearance_Design_HelperText
:
Int
static
val
TextAppearance_Design_Hint
:
Int
static
val
TextAppearance_Design_Snackbar_Message
:
Int
static
val
TextAppearance_Design_Tab
:
Int
static
val
TextAppearance_MaterialComponents_Body1
:
Int
static
val
TextAppearance_MaterialComponents_Body2
:
Int
static
val
TextAppearance_MaterialComponents_Button
:
Int
static
val
TextAppearance_MaterialComponents_Caption
:
Int
static
val
TextAppearance_MaterialComponents_Chip
:
Int
static
val
TextAppearance_MaterialComponents_Headline1
:
Int
static
val
TextAppearance_MaterialComponents_Headline2
:
Int
static
val
TextAppearance_MaterialComponents_Headline3
:
Int
static
val
TextAppearance_MaterialComponents_Headline4
:
Int
static
val
TextAppearance_MaterialComponents_Headline5
:
Int
static
val
TextAppearance_MaterialComponents_Headline6
:
Int
static
val
TextAppearance_MaterialComponents_Overline
:
Int
static
val
TextAppearance_MaterialComponents_Subtitle1
:
Int
static
val
TextAppearance_MaterialComponents_Subtitle2
:
Int
static
val
TextAppearance_MaterialComponents_Tab
:
Int
static
val
TextAppearance_Widget_AppCompat_ExpandedMenu_Item
:
Int
static
val
TextAppearance_Widget_AppCompat_Toolbar_Subtitle
:
Int
static
val
TextAppearance_Widget_AppCompat_Toolbar_Title
:
Int
static
val
ThemeOverlay_AppCompat
:
Int
static
val
ThemeOverlay_AppCompat_ActionBar
:
Int
static
val
ThemeOverlay_AppCompat_Dark
:
Int
static
val
ThemeOverlay_AppCompat_Dark_ActionBar
:
Int
static
val
ThemeOverlay_AppCompat_Dialog
:
Int
static
val
ThemeOverlay_AppCompat_Dialog_Alert
:
Int
static
val
ThemeOverlay_AppCompat_Light
:
Int
static
val
ThemeOverlay_MaterialComponents
:
Int
static
val
ThemeOverlay_MaterialComponents_ActionBar
:
Int
static
val
ThemeOverlay_MaterialComponents_Dark
:
Int
static
val
ThemeOverlay_MaterialComponents_Dark_ActionBar
:
Int
static
val
ThemeOverlay_MaterialComponents_Dialog
:
Int
static
val
ThemeOverlay_MaterialComponents_Dialog_Alert
:
Int
static
val
ThemeOverlay_MaterialComponents_Light
:
Int
static
val
ThemeOverlay_MaterialComponents_TextInputEditText
:
Int
static
val
ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox
:
Int
static
val
ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense
:
Int
static
val
ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox
:
Int
static
val
ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense
:
Int
static
val
Theme_AppCompat
:
Int
static
val
Theme_AppCompat_CompactMenu
:
Int
static
val
Theme_AppCompat_DayNight
:
Int
static
val
Theme_AppCompat_DayNight_DarkActionBar
:
Int
static
val
Theme_AppCompat_DayNight_Dialog
:
Int
static
val
Theme_AppCompat_DayNight_DialogWhenLarge
:
Int
static
val
Theme_AppCompat_DayNight_Dialog_Alert
:
Int
static
val
Theme_AppCompat_DayNight_Dialog_MinWidth
:
Int
static
val
Theme_AppCompat_DayNight_NoActionBar
:
Int
static
val
Theme_AppCompat_Dialog
:
Int
static
val
Theme_AppCompat_DialogWhenLarge
:
Int
static
val
Theme_AppCompat_Dialog_Alert
:
Int
static
val
Theme_AppCompat_Dialog_MinWidth
:
Int
static
val
Theme_AppCompat_Light
:
Int
static
val
Theme_AppCompat_Light_DarkActionBar
:
Int
static
val
Theme_AppCompat_Light_Dialog
:
Int
static
val
Theme_AppCompat_Light_DialogWhenLarge
:
Int
static
val
Theme_AppCompat_Light_Dialog_Alert
:
Int
static
val
Theme_AppCompat_Light_Dialog_MinWidth
:
Int
static
val
Theme_AppCompat_Light_NoActionBar
:
Int
static
val
Theme_AppCompat_NoActionBar
:
Int
static
val
Theme_CityPinboard
:
Int
static
val
Theme_CityPinboard_NoActionBar
:
Int
static
val
Theme_Design
:
Int
static
val
Theme_Design_BottomSheetDialog
:
Int
static
val
Theme_Design_Light
:
Int
static
val
Theme_Design_Light_BottomSheetDialog
:
Int
static
val
Theme_Design_Light_NoActionBar
:
Int
static
val
Theme_Design_NoActionBar
:
Int
static
val
Theme_MaterialComponents
:
Int
static
val
Theme_MaterialComponents_BottomSheetDialog
:
Int
static
val
Theme_MaterialComponents_Bridge
:
Int
static
val
Theme_MaterialComponents_CompactMenu
:
Int
static
val
Theme_MaterialComponents_Dialog
:
Int
static
val
Theme_MaterialComponents_DialogWhenLarge
:
Int
static
val
Theme_MaterialComponents_Dialog_Alert
:
Int
static
val
Theme_MaterialComponents_Dialog_MinWidth
:
Int
static
val
Theme_MaterialComponents_Light
:
Int
static
val
Theme_MaterialComponents_Light_BottomSheetDialog
:
Int
static
val
Theme_MaterialComponents_Light_Bridge
:
Int
static
val
Theme_MaterialComponents_Light_DarkActionBar
:
Int
static
val
Theme_MaterialComponents_Light_DarkActionBar_Bridge
:
Int
static
val
Theme_MaterialComponents_Light_Dialog
:
Int
static
val
Theme_MaterialComponents_Light_DialogWhenLarge
:
Int
static
val
Theme_MaterialComponents_Light_Dialog_Alert
:
Int
static
val
Theme_MaterialComponents_Light_Dialog_MinWidth
:
Int
static
val
Theme_MaterialComponents_Light_NoActionBar
:
Int
static
val
Theme_MaterialComponents_Light_NoActionBar_Bridge
:
Int
static
val
Theme_MaterialComponents_NoActionBar
:
Int
static
val
Theme_MaterialComponents_NoActionBar_Bridge
:
Int
static
val
Theme_Widget_CityPinboard_Toolbar
:
Int
static
val
Widget_AppCompat_ActionBar
:
Int
static
val
Widget_AppCompat_ActionBar_Solid
:
Int
static
val
Widget_AppCompat_ActionBar_TabBar
:
Int
static
val
Widget_AppCompat_ActionBar_TabText
:
Int
static
val
Widget_AppCompat_ActionBar_TabView
:
Int
static
val
Widget_AppCompat_ActionButton
:
Int
static
val
Widget_AppCompat_ActionButton_CloseMode
:
Int
static
val
Widget_AppCompat_ActionButton_Overflow
:
Int
static
val
Widget_AppCompat_ActionMode
:
Int
static
val
Widget_AppCompat_ActivityChooserView
:
Int
static
val
Widget_AppCompat_AutoCompleteTextView
:
Int
static
val
Widget_AppCompat_Button
:
Int
static
val
Widget_AppCompat_ButtonBar
:
Int
static
val
Widget_AppCompat_ButtonBar_AlertDialog
:
Int
static
val
Widget_AppCompat_Button_Borderless
:
Int
static
val
Widget_AppCompat_Button_Borderless_Colored
:
Int
static
val
Widget_AppCompat_Button_ButtonBar_AlertDialog
:
Int
static
val
Widget_AppCompat_Button_Colored
:
Int
static
val
Widget_AppCompat_Button_Small
:
Int
static
val
Widget_AppCompat_CompoundButton_CheckBox
:
Int
static
val
Widget_AppCompat_CompoundButton_RadioButton
:
Int
static
val
Widget_AppCompat_CompoundButton_Switch
:
Int
static
val
Widget_AppCompat_DrawerArrowToggle
:
Int
static
val
Widget_AppCompat_DropDownItem_Spinner
:
Int
static
val
Widget_AppCompat_EditText
:
Int
static
val
Widget_AppCompat_ImageButton
:
Int
static
val
Widget_AppCompat_Light_ActionBar
:
Int
static
val
Widget_AppCompat_Light_ActionBar_Solid
:
Int
static
val
Widget_AppCompat_Light_ActionBar_Solid_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabBar
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabBar_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabText
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabText_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabView
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabView_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionButton
:
Int
static
val
Widget_AppCompat_Light_ActionButton_CloseMode
:
Int
static
val
Widget_AppCompat_Light_ActionButton_Overflow
:
Int
static
val
Widget_AppCompat_Light_ActionMode_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActivityChooserView
:
Int
static
val
Widget_AppCompat_Light_AutoCompleteTextView
:
Int
static
val
Widget_AppCompat_Light_DropDownItem_Spinner
:
Int
static
val
Widget_AppCompat_Light_ListPopupWindow
:
Int
static
val
Widget_AppCompat_Light_ListView_DropDown
:
Int
static
val
Widget_AppCompat_Light_PopupMenu
:
Int
static
val
Widget_AppCompat_Light_PopupMenu_Overflow
:
Int
static
val
Widget_AppCompat_Light_SearchView
:
Int
static
val
Widget_AppCompat_Light_Spinner_DropDown_ActionBar
:
Int
static
val
Widget_AppCompat_ListMenuView
:
Int
static
val
Widget_AppCompat_ListPopupWindow
:
Int
static
val
Widget_AppCompat_ListView
:
Int
static
val
Widget_AppCompat_ListView_DropDown
:
Int
static
val
Widget_AppCompat_ListView_Menu
:
Int
static
val
Widget_AppCompat_PopupMenu
:
Int
static
val
Widget_AppCompat_PopupMenu_Overflow
:
Int
static
val
Widget_AppCompat_PopupWindow
:
Int
static
val
Widget_AppCompat_ProgressBar
:
Int
static
val
Widget_AppCompat_ProgressBar_Horizontal
:
Int
static
val
Widget_AppCompat_RatingBar
:
Int
static
val
Widget_AppCompat_RatingBar_Indicator
:
Int
static
val
Widget_AppCompat_RatingBar_Small
:
Int
static
val
Widget_AppCompat_SearchView
:
Int
static
val
Widget_AppCompat_SearchView_ActionBar
:
Int
static
val
Widget_AppCompat_SeekBar
:
Int
static
val
Widget_AppCompat_SeekBar_Discrete
:
Int
static
val
Widget_AppCompat_Spinner
:
Int
static
val
Widget_AppCompat_Spinner_DropDown
:
Int
static
val
Widget_AppCompat_Spinner_DropDown_ActionBar
:
Int
static
val
Widget_AppCompat_Spinner_Underlined
:
Int
static
val
Widget_AppCompat_TextView_SpinnerItem
:
Int
static
val
Widget_AppCompat_Toolbar
:
Int
static
val
Widget_AppCompat_Toolbar_Button_Navigation
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
static
val
Widget_Design_AppBarLayout
:
Int
static
val
Widget_Design_BottomNavigationView
:
Int
static
val
Widget_Design_BottomSheet_Modal
:
Int
static
val
Widget_Design_CollapsingToolbar
:
Int
static
val
Widget_Design_FloatingActionButton
:
Int
static
val
Widget_Design_NavigationView
:
Int
static
val
Widget_Design_ScrimInsetsFrameLayout
:
Int
static
val
Widget_Design_Snackbar
:
Int
static
val
Widget_Design_TabLayout
:
Int
static
val
Widget_Design_TextInputLayout
:
Int
static
val
Widget_MaterialComponents_BottomAppBar
:
Int
static
val
Widget_MaterialComponents_BottomAppBar_Colored
:
Int
static
val
Widget_MaterialComponents_BottomNavigationView
:
Int
static
val
Widget_MaterialComponents_BottomNavigationView_Colored
:
Int
static
val
Widget_MaterialComponents_BottomSheet_Modal
:
Int
static
val
Widget_MaterialComponents_Button
:
Int
static
val
Widget_MaterialComponents_Button_Icon
:
Int
static
val
Widget_MaterialComponents_Button_OutlinedButton
:
Int
static
val
Widget_MaterialComponents_Button_OutlinedButton_Icon
:
Int
static
val
Widget_MaterialComponents_Button_TextButton
:
Int
static
val
Widget_MaterialComponents_Button_TextButton_Dialog
:
Int
static
val
Widget_MaterialComponents_Button_TextButton_Dialog_Icon
:
Int
static
val
Widget_MaterialComponents_Button_TextButton_Icon
:
Int
static
val
Widget_MaterialComponents_Button_UnelevatedButton
:
Int
static
val
Widget_MaterialComponents_Button_UnelevatedButton_Icon
:
Int
static
val
Widget_MaterialComponents_CardView
:
Int
static
val
Widget_MaterialComponents_ChipGroup
:
Int
static
val
Widget_MaterialComponents_Chip_Action
:
Int
static
val
Widget_MaterialComponents_Chip_Choice
:
Int
static
val
Widget_MaterialComponents_Chip_Entry
:
Int
static
val
Widget_MaterialComponents_Chip_Filter
:
Int
static
val
Widget_MaterialComponents_FloatingActionButton
:
Int
static
val
Widget_MaterialComponents_NavigationView
:
Int
static
val
Widget_MaterialComponents_Snackbar
:
Int
static
val
Widget_MaterialComponents_Snackbar_FullWidth
:
Int
static
val
Widget_MaterialComponents_TabLayout
:
Int
static
val
Widget_MaterialComponents_TabLayout_Colored
:
Int
static
val
Widget_MaterialComponents_TextInputEditText_FilledBox
:
Int
static
val
Widget_MaterialComponents_TextInputEditText_FilledBox_Dense
:
Int
static
val
Widget_MaterialComponents_TextInputEditText_OutlinedBox
:
Int
static
val
Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense
:
Int
static
val
Widget_MaterialComponents_TextInputLayout_FilledBox
:
Int
static
val
Widget_MaterialComponents_TextInputLayout_FilledBox_Dense
:
Int
static
val
Widget_MaterialComponents_TextInputLayout_OutlinedBox
:
Int
static
val
Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense
:
Int
static
val
Widget_MaterialComponents_Toolbar
:
Int
static
val
Widget_Shrine_Button_TextButton
:
Int
static
val
Widget_Support_CoordinatorLayout
:
Int
class
styleable
Module Contents
styleable
(
)
static
val
ActionBar
:
IntArray
static
val
ActionBarLayout
:
IntArray
static
val
ActionBarLayout_android_layout_gravity
:
Int
static
val
ActionBar_background
:
Int
static
val
ActionBar_backgroundSplit
:
Int
static
val
ActionBar_backgroundStacked
:
Int
static
val
ActionBar_contentInsetEnd
:
Int
static
val
ActionBar_contentInsetEndWithActions
:
Int
static
val
ActionBar_contentInsetLeft
:
Int
static
val
ActionBar_contentInsetRight
:
Int
static
val
ActionBar_contentInsetStart
:
Int
static
val
ActionBar_contentInsetStartWithNavigation
:
Int
static
val
ActionBar_customNavigationLayout
:
Int
static
val
ActionBar_displayOptions
:
Int
static
val
ActionBar_divider
:
Int
static
val
ActionBar_elevation
:
Int
static
val
ActionBar_height
:
Int
static
val
ActionBar_hideOnContentScroll
:
Int
static
val
ActionBar_homeAsUpIndicator
:
Int
static
val
ActionBar_homeLayout
:
Int
static
val
ActionBar_icon
:
Int
static
val
ActionBar_indeterminateProgressStyle
:
Int
static
val
ActionBar_itemPadding
:
Int
static
val
ActionBar_logo
:
Int
static
val
ActionBar_navigationMode
:
Int
static
val
ActionBar_popupTheme
:
Int
static
val
ActionBar_progressBarPadding
:
Int
static
val
ActionBar_progressBarStyle
:
Int
static
val
ActionBar_subtitle
:
Int
static
val
ActionBar_subtitleTextStyle
:
Int
static
val
ActionBar_title
:
Int
static
val
ActionBar_titleTextStyle
:
Int
static
val
ActionMenuItemView
:
IntArray
static
val
ActionMenuItemView_android_minWidth
:
Int
static
val
ActionMenuView
:
IntArray
static
val
ActionMode
:
IntArray
static
val
ActionMode_background
:
Int
static
val
ActionMode_backgroundSplit
:
Int
static
val
ActionMode_closeItemLayout
:
Int
static
val
ActionMode_height
:
Int
static
val
ActionMode_subtitleTextStyle
:
Int
static
val
ActionMode_titleTextStyle
:
Int
static
val
ActivityChooserView
:
IntArray
static
val
ActivityChooserView_expandActivityOverflowButtonDrawable
:
Int
static
val
ActivityChooserView_initialActivityCount
:
Int
static
val
AlertDialog
:
IntArray
static
val
AlertDialog_android_layout
:
Int
static
val
AlertDialog_buttonIconDimen
:
Int
static
val
AlertDialog_buttonPanelSideLayout
:
Int
static
val
AlertDialog_listItemLayout
:
Int
static
val
AlertDialog_listLayout
:
Int
static
val
AlertDialog_multiChoiceItemLayout
:
Int
static
val
AlertDialog_showTitle
:
Int
static
val
AlertDialog_singleChoiceItemLayout
:
Int
static
val
AnimatedStateListDrawableCompat
:
IntArray
static
val
AnimatedStateListDrawableCompat_android_constantSize
:
Int
static
val
AnimatedStateListDrawableCompat_android_dither
:
Int
static
val
AnimatedStateListDrawableCompat_android_enterFadeDuration
:
Int
static
val
AnimatedStateListDrawableCompat_android_exitFadeDuration
:
Int
static
val
AnimatedStateListDrawableCompat_android_variablePadding
:
Int
static
val
AnimatedStateListDrawableCompat_android_visible
:
Int
static
val
AnimatedStateListDrawableItem
:
IntArray
static
val
AnimatedStateListDrawableItem_android_drawable
:
Int
static
val
AnimatedStateListDrawableItem_android_id
:
Int
static
val
AnimatedStateListDrawableTransition
:
IntArray
static
val
AnimatedStateListDrawableTransition_android_drawable
:
Int
static
val
AnimatedStateListDrawableTransition_android_fromId
:
Int
static
val
AnimatedStateListDrawableTransition_android_reversible
:
Int
static
val
AnimatedStateListDrawableTransition_android_toId
:
Int
static
val
AppBarLayout
:
IntArray
static
val
AppBarLayoutStates
:
IntArray
static
val
AppBarLayoutStates_state_collapsed
:
Int
static
val
AppBarLayoutStates_state_collapsible
:
Int
static
val
AppBarLayoutStates_state_liftable
:
Int
static
val
AppBarLayoutStates_state_lifted
:
Int
static
val
AppBarLayout_Layout
:
IntArray
static
val
AppBarLayout_Layout_layout_scrollFlags
:
Int
static
val
AppBarLayout_Layout_layout_scrollInterpolator
:
Int
static
val
AppBarLayout_android_background
:
Int
static
val
AppBarLayout_android_keyboardNavigationCluster
:
Int
static
val
AppBarLayout_android_touchscreenBlocksFocus
:
Int
static
val
AppBarLayout_elevation
:
Int
static
val
AppBarLayout_expanded
:
Int
static
val
AppBarLayout_liftOnScroll
:
Int
static
val
AppCompatImageView
:
IntArray
static
val
AppCompatImageView_android_src
:
Int
static
val
AppCompatImageView_srcCompat
:
Int
static
val
AppCompatImageView_tint
:
Int
static
val
AppCompatImageView_tintMode
:
Int
static
val
AppCompatSeekBar
:
IntArray
static
val
AppCompatSeekBar_android_thumb
:
Int
static
val
AppCompatSeekBar_tickMark
:
Int
static
val
AppCompatSeekBar_tickMarkTint
:
Int
static
val
AppCompatSeekBar_tickMarkTintMode
:
Int
static
val
AppCompatTextHelper
:
IntArray
static
val
AppCompatTextHelper_android_drawableBottom
:
Int
static
val
AppCompatTextHelper_android_drawableEnd
:
Int
static
val
AppCompatTextHelper_android_drawableLeft
:
Int
static
val
AppCompatTextHelper_android_drawableRight
:
Int
static
val
AppCompatTextHelper_android_drawableStart
:
Int
static
val
AppCompatTextHelper_android_drawableTop
:
Int
static
val
AppCompatTextHelper_android_textAppearance
:
Int
static
val
AppCompatTextView
:
IntArray
static
val
AppCompatTextView_android_textAppearance
:
Int
static
val
AppCompatTextView_autoSizeMaxTextSize
:
Int
static
val
AppCompatTextView_autoSizeMinTextSize
:
Int
static
val
AppCompatTextView_autoSizePresetSizes
:
Int
static
val
AppCompatTextView_autoSizeStepGranularity
:
Int
static
val
AppCompatTextView_autoSizeTextType
:
Int
static
val
AppCompatTextView_firstBaselineToTopHeight
:
Int
static
val
AppCompatTextView_fontFamily
:
Int
static
val
AppCompatTextView_lastBaselineToBottomHeight
:
Int
static
val
AppCompatTextView_lineHeight
:
Int
static
val
AppCompatTextView_textAllCaps
:
Int
static
val
AppCompatTheme
:
IntArray
static
val
AppCompatTheme_actionBarDivider
:
Int
static
val
AppCompatTheme_actionBarItemBackground
:
Int
static
val
AppCompatTheme_actionBarPopupTheme
:
Int
static
val
AppCompatTheme_actionBarSize
:
Int
static
val
AppCompatTheme_actionBarSplitStyle
:
Int
static
val
AppCompatTheme_actionBarStyle
:
Int
static
val
AppCompatTheme_actionBarTabBarStyle
:
Int
static
val
AppCompatTheme_actionBarTabStyle
:
Int
static
val
AppCompatTheme_actionBarTabTextStyle
:
Int
static
val
AppCompatTheme_actionBarTheme
:
Int
static
val
AppCompatTheme_actionBarWidgetTheme
:
Int
static
val
AppCompatTheme_actionButtonStyle
:
Int
static
val
AppCompatTheme_actionDropDownStyle
:
Int
static
val
AppCompatTheme_actionMenuTextAppearance
:
Int
static
val
AppCompatTheme_actionMenuTextColor
:
Int
static
val
AppCompatTheme_actionModeBackground
:
Int
static
val
AppCompatTheme_actionModeCloseButtonStyle
:
Int
static
val
AppCompatTheme_actionModeCloseDrawable
:
Int
static
val
AppCompatTheme_actionModeCopyDrawable
:
Int
static
val
AppCompatTheme_actionModeCutDrawable
:
Int
static
val
AppCompatTheme_actionModeFindDrawable
:
Int
static
val
AppCompatTheme_actionModePasteDrawable
:
Int
static
val
AppCompatTheme_actionModePopupWindowStyle
:
Int
static
val
AppCompatTheme_actionModeSelectAllDrawable
:
Int
static
val
AppCompatTheme_actionModeShareDrawable
:
Int
static
val
AppCompatTheme_actionModeSplitBackground
:
Int
static
val
AppCompatTheme_actionModeStyle
:
Int
static
val
AppCompatTheme_actionModeWebSearchDrawable
:
Int
static
val
AppCompatTheme_actionOverflowButtonStyle
:
Int
static
val
AppCompatTheme_actionOverflowMenuStyle
:
Int
static
val
AppCompatTheme_activityChooserViewStyle
:
Int
static
val
AppCompatTheme_alertDialogButtonGroupStyle
:
Int
static
val
AppCompatTheme_alertDialogCenterButtons
:
Int
static
val
AppCompatTheme_alertDialogStyle
:
Int
static
val
AppCompatTheme_alertDialogTheme
:
Int
static
val
AppCompatTheme_android_windowAnimationStyle
:
Int
static
val
AppCompatTheme_android_windowIsFloating
:
Int
static
val
AppCompatTheme_autoCompleteTextViewStyle
:
Int
static
val
AppCompatTheme_borderlessButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarNegativeButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarNeutralButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarPositiveButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarStyle
:
Int
static
val
AppCompatTheme_buttonStyle
:
Int
static
val
AppCompatTheme_buttonStyleSmall
:
Int
static
val
AppCompatTheme_checkboxStyle
:
Int
static
val
AppCompatTheme_checkedTextViewStyle
:
Int
static
val
AppCompatTheme_colorAccent
:
Int
static
val
AppCompatTheme_colorBackgroundFloating
:
Int
static
val
AppCompatTheme_colorButtonNormal
:
Int
static
val
AppCompatTheme_colorControlActivated
:
Int
static
val
AppCompatTheme_colorControlHighlight
:
Int
static
val
AppCompatTheme_colorControlNormal
:
Int
static
val
AppCompatTheme_colorError
:
Int
static
val
AppCompatTheme_colorPrimary
:
Int
static
val
AppCompatTheme_colorPrimaryDark
:
Int
static
val
AppCompatTheme_colorSwitchThumbNormal
:
Int
static
val
AppCompatTheme_controlBackground
:
Int
static
val
AppCompatTheme_dialogCornerRadius
:
Int
static
val
AppCompatTheme_dialogPreferredPadding
:
Int
static
val
AppCompatTheme_dialogTheme
:
Int
static
val
AppCompatTheme_dividerHorizontal
:
Int
static
val
AppCompatTheme_dividerVertical
:
Int
static
val
AppCompatTheme_dropDownListViewStyle
:
Int
static
val
AppCompatTheme_dropdownListPreferredItemHeight
:
Int
static
val
AppCompatTheme_editTextBackground
:
Int
static
val
AppCompatTheme_editTextColor
:
Int
static
val
AppCompatTheme_editTextStyle
:
Int
static
val
AppCompatTheme_homeAsUpIndicator
:
Int
static
val
AppCompatTheme_imageButtonStyle
:
Int
static
val
AppCompatTheme_listChoiceBackgroundIndicator
:
Int
static
val
AppCompatTheme_listDividerAlertDialog
:
Int
static
val
AppCompatTheme_listMenuViewStyle
:
Int
static
val
AppCompatTheme_listPopupWindowStyle
:
Int
static
val
AppCompatTheme_listPreferredItemHeight
:
Int
static
val
AppCompatTheme_listPreferredItemHeightLarge
:
Int
static
val
AppCompatTheme_listPreferredItemHeightSmall
:
Int
static
val
AppCompatTheme_listPreferredItemPaddingLeft
:
Int
static
val
AppCompatTheme_listPreferredItemPaddingRight
:
Int
static
val
AppCompatTheme_panelBackground
:
Int
static
val
AppCompatTheme_panelMenuListTheme
:
Int
static
val
AppCompatTheme_panelMenuListWidth
:
Int
static
val
AppCompatTheme_popupMenuStyle
:
Int
static
val
AppCompatTheme_popupWindowStyle
:
Int
static
val
AppCompatTheme_radioButtonStyle
:
Int
static
val
AppCompatTheme_ratingBarStyle
:
Int
static
val
AppCompatTheme_ratingBarStyleIndicator
:
Int
static
val
AppCompatTheme_ratingBarStyleSmall
:
Int
static
val
AppCompatTheme_searchViewStyle
:
Int
static
val
AppCompatTheme_seekBarStyle
:
Int
static
val
AppCompatTheme_selectableItemBackground
:
Int
static
val
AppCompatTheme_selectableItemBackgroundBorderless
:
Int
static
val
AppCompatTheme_spinnerDropDownItemStyle
:
Int
static
val
AppCompatTheme_spinnerStyle
:
Int
static
val
AppCompatTheme_switchStyle
:
Int
static
val
AppCompatTheme_textAppearanceLargePopupMenu
:
Int
static
val
AppCompatTheme_textAppearanceListItem
:
Int
static
val
AppCompatTheme_textAppearanceListItemSecondary
:
Int
static
val
AppCompatTheme_textAppearanceListItemSmall
:
Int
static
val
AppCompatTheme_textAppearancePopupMenuHeader
:
Int
static
val
AppCompatTheme_textAppearanceSearchResultSubtitle
:
Int
static
val
AppCompatTheme_textAppearanceSearchResultTitle
:
Int
static
val
AppCompatTheme_textAppearanceSmallPopupMenu
:
Int
static
val
AppCompatTheme_textColorAlertDialogListItem
:
Int
static
val
AppCompatTheme_textColorSearchUrl
:
Int
static
val
AppCompatTheme_toolbarNavigationButtonStyle
:
Int
static
val
AppCompatTheme_toolbarStyle
:
Int
static
val
AppCompatTheme_tooltipForegroundColor
:
Int
static
val
AppCompatTheme_tooltipFrameBackground
:
Int
static
val
AppCompatTheme_viewInflaterClass
:
Int
static
val
AppCompatTheme_windowActionBar
:
Int
static
val
AppCompatTheme_windowActionBarOverlay
:
Int
static
val
AppCompatTheme_windowActionModeOverlay
:
Int
static
val
AppCompatTheme_windowFixedHeightMajor
:
Int
static
val
AppCompatTheme_windowFixedHeightMinor
:
Int
static
val
AppCompatTheme_windowFixedWidthMajor
:
Int
static
val
AppCompatTheme_windowFixedWidthMinor
:
Int
static
val
AppCompatTheme_windowMinWidthMajor
:
Int
static
val
AppCompatTheme_windowMinWidthMinor
:
Int
static
val
AppCompatTheme_windowNoTitle
:
Int
static
val
BottomAppBar
:
IntArray
static
val
BottomAppBar_backgroundTint
:
Int
static
val
BottomAppBar_fabAlignmentMode
:
Int
static
val
BottomAppBar_fabCradleMargin
:
Int
static
val
BottomAppBar_fabCradleRoundedCornerRadius
:
Int
static
val
BottomAppBar_fabCradleVerticalOffset
:
Int
static
val
BottomAppBar_hideOnScroll
:
Int
static
val
BottomNavigationView
:
IntArray
static
val
BottomNavigationView_elevation
:
Int
static
val
BottomNavigationView_itemBackground
:
Int
static
val
BottomNavigationView_itemHorizontalTranslationEnabled
:
Int
static
val
BottomNavigationView_itemIconSize
:
Int
static
val
BottomNavigationView_itemIconTint
:
Int
static
val
BottomNavigationView_itemTextAppearanceActive
:
Int
static
val
BottomNavigationView_itemTextAppearanceInactive
:
Int
static
val
BottomNavigationView_itemTextColor
:
Int
static
val
BottomNavigationView_labelVisibilityMode
:
Int
static
val
BottomNavigationView_menu
:
Int
static
val
BottomSheetBehavior_Layout
:
IntArray
static
val
BottomSheetBehavior_Layout_behavior_fitToContents
:
Int
static
val
BottomSheetBehavior_Layout_behavior_hideable
:
Int
static
val
BottomSheetBehavior_Layout_behavior_peekHeight
:
Int
static
val
BottomSheetBehavior_Layout_behavior_skipCollapsed
:
Int
static
val
ButtonBarLayout
:
IntArray
static
val
ButtonBarLayout_allowStacking
:
Int
static
val
CardView
:
IntArray
static
val
CardView_android_minHeight
:
Int
static
val
CardView_android_minWidth
:
Int
static
val
CardView_cardBackgroundColor
:
Int
static
val
CardView_cardCornerRadius
:
Int
static
val
CardView_cardElevation
:
Int
static
val
CardView_cardMaxElevation
:
Int
static
val
CardView_cardPreventCornerOverlap
:
Int
static
val
CardView_cardUseCompatPadding
:
Int
static
val
CardView_contentPadding
:
Int
static
val
CardView_contentPaddingBottom
:
Int
static
val
CardView_contentPaddingLeft
:
Int
static
val
CardView_contentPaddingRight
:
Int
static
val
CardView_contentPaddingTop
:
Int
static
val
Chip
:
IntArray
static
val
ChipGroup
:
IntArray
static
val
ChipGroup_checkedChip
:
Int
static
val
ChipGroup_chipSpacing
:
Int
static
val
ChipGroup_chipSpacingHorizontal
:
Int
static
val
ChipGroup_chipSpacingVertical
:
Int
static
val
ChipGroup_singleLine
:
Int
static
val
ChipGroup_singleSelection
:
Int
static
val
Chip_android_checkable
:
Int
static
val
Chip_android_ellipsize
:
Int
static
val
Chip_android_maxWidth
:
Int
static
val
Chip_android_text
:
Int
static
val
Chip_android_textAppearance
:
Int
static
val
Chip_checkedIcon
:
Int
static
val
Chip_checkedIconEnabled
:
Int
static
val
Chip_checkedIconVisible
:
Int
static
val
Chip_chipBackgroundColor
:
Int
static
val
Chip_chipCornerRadius
:
Int
static
val
Chip_chipEndPadding
:
Int
static
val
Chip_chipIcon
:
Int
static
val
Chip_chipIconEnabled
:
Int
static
val
Chip_chipIconSize
:
Int
static
val
Chip_chipIconTint
:
Int
static
val
Chip_chipIconVisible
:
Int
static
val
Chip_chipMinHeight
:
Int
static
val
Chip_chipStartPadding
:
Int
static
val
Chip_chipStrokeColor
:
Int
static
val
Chip_chipStrokeWidth
:
Int
static
val
Chip_closeIcon
:
Int
static
val
Chip_closeIconEnabled
:
Int
static
val
Chip_closeIconEndPadding
:
Int
static
val
Chip_closeIconSize
:
Int
static
val
Chip_closeIconStartPadding
:
Int
static
val
Chip_closeIconTint
:
Int
static
val
Chip_closeIconVisible
:
Int
static
val
Chip_hideMotionSpec
:
Int
static
val
Chip_iconEndPadding
:
Int
static
val
Chip_iconStartPadding
:
Int
static
val
Chip_rippleColor
:
Int
static
val
Chip_showMotionSpec
:
Int
static
val
Chip_textEndPadding
:
Int
static
val
Chip_textStartPadding
:
Int
static
val
CollapsingToolbarLayout
:
IntArray
static
val
CollapsingToolbarLayout_Layout
:
IntArray
static
val
CollapsingToolbarLayout_Layout_layout_collapseMode
:
Int
static
val
CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier
:
Int
static
val
CollapsingToolbarLayout_collapsedTitleGravity
:
Int
static
val
CollapsingToolbarLayout_collapsedTitleTextAppearance
:
Int
static
val
CollapsingToolbarLayout_contentScrim
:
Int
static
val
CollapsingToolbarLayout_expandedTitleGravity
:
Int
static
val
CollapsingToolbarLayout_expandedTitleMargin
:
Int
static
val
CollapsingToolbarLayout_expandedTitleMarginBottom
:
Int
static
val
CollapsingToolbarLayout_expandedTitleMarginEnd
:
Int
static
val
CollapsingToolbarLayout_expandedTitleMarginStart
:
Int
static
val
CollapsingToolbarLayout_expandedTitleMarginTop
:
Int
static
val
CollapsingToolbarLayout_expandedTitleTextAppearance
:
Int
static
val
CollapsingToolbarLayout_scrimAnimationDuration
:
Int
static
val
CollapsingToolbarLayout_scrimVisibleHeightTrigger
:
Int
static
val
CollapsingToolbarLayout_statusBarScrim
:
Int
static
val
CollapsingToolbarLayout_title
:
Int
static
val
CollapsingToolbarLayout_titleEnabled
:
Int
static
val
CollapsingToolbarLayout_toolbarId
:
Int
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
CompoundButton
:
IntArray
static
val
CompoundButton_android_button
:
Int
static
val
CompoundButton_buttonTint
:
Int
static
val
CompoundButton_buttonTintMode
:
Int
static
val
ConstraintLayout_Layout
:
IntArray
static
val
ConstraintLayout_Layout_android_maxHeight
:
Int
static
val
ConstraintLayout_Layout_android_maxWidth
:
Int
static
val
ConstraintLayout_Layout_android_minHeight
:
Int
static
val
ConstraintLayout_Layout_android_minWidth
:
Int
static
val
ConstraintLayout_Layout_android_orientation
:
Int
static
val
ConstraintLayout_Layout_barrierAllowsGoneWidgets
:
Int
static
val
ConstraintLayout_Layout_barrierDirection
:
Int
static
val
ConstraintLayout_Layout_chainUseRtl
:
Int
static
val
ConstraintLayout_Layout_constraintSet
:
Int
static
val
ConstraintLayout_Layout_constraint_referenced_ids
:
Int
static
val
ConstraintLayout_Layout_layout_constrainedHeight
:
Int
static
val
ConstraintLayout_Layout_layout_constrainedWidth
:
Int
static
val
ConstraintLayout_Layout_layout_constraintBaseline_creator
:
Int
static
val
ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintBottom_creator
:
Int
static
val
ConstraintLayout_Layout_layout_constraintBottom_toBottomOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintBottom_toTopOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintCircle
:
Int
static
val
ConstraintLayout_Layout_layout_constraintCircleAngle
:
Int
static
val
ConstraintLayout_Layout_layout_constraintCircleRadius
:
Int
static
val
ConstraintLayout_Layout_layout_constraintDimensionRatio
:
Int
static
val
ConstraintLayout_Layout_layout_constraintEnd_toEndOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintEnd_toStartOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintGuide_begin
:
Int
static
val
ConstraintLayout_Layout_layout_constraintGuide_end
:
Int
static
val
ConstraintLayout_Layout_layout_constraintGuide_percent
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHeight_default
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHeight_max
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHeight_min
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHeight_percent
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHorizontal_bias
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHorizontal_weight
:
Int
static
val
ConstraintLayout_Layout_layout_constraintLeft_creator
:
Int
static
val
ConstraintLayout_Layout_layout_constraintLeft_toLeftOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintLeft_toRightOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintRight_creator
:
Int
static
val
ConstraintLayout_Layout_layout_constraintRight_toLeftOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintRight_toRightOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintStart_toEndOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintStart_toStartOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintTop_creator
:
Int
static
val
ConstraintLayout_Layout_layout_constraintTop_toBottomOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintTop_toTopOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintVertical_bias
:
Int
static
val
ConstraintLayout_Layout_layout_constraintVertical_chainStyle
:
Int
static
val
ConstraintLayout_Layout_layout_constraintVertical_weight
:
Int
static
val
ConstraintLayout_Layout_layout_constraintWidth_default
:
Int
static
val
ConstraintLayout_Layout_layout_constraintWidth_max
:
Int
static
val
ConstraintLayout_Layout_layout_constraintWidth_min
:
Int
static
val
ConstraintLayout_Layout_layout_constraintWidth_percent
:
Int
static
val
ConstraintLayout_Layout_layout_editor_absoluteX
:
Int
static
val
ConstraintLayout_Layout_layout_editor_absoluteY
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginBottom
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginEnd
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginLeft
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginRight
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginStart
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginTop
:
Int
static
val
ConstraintLayout_Layout_layout_optimizationLevel
:
Int
static
val
ConstraintLayout_placeholder
:
IntArray
static
val
ConstraintLayout_placeholder_content
:
Int
static
val
ConstraintLayout_placeholder_emptyVisibility
:
Int
static
val
ConstraintSet
:
IntArray
static
val
ConstraintSet_android_alpha
:
Int
static
val
ConstraintSet_android_elevation
:
Int
static
val
ConstraintSet_android_id
:
Int
static
val
ConstraintSet_android_layout_height
:
Int
static
val
ConstraintSet_android_layout_marginBottom
:
Int
static
val
ConstraintSet_android_layout_marginEnd
:
Int
static
val
ConstraintSet_android_layout_marginLeft
:
Int
static
val
ConstraintSet_android_layout_marginRight
:
Int
static
val
ConstraintSet_android_layout_marginStart
:
Int
static
val
ConstraintSet_android_layout_marginTop
:
Int
static
val
ConstraintSet_android_layout_width
:
Int
static
val
ConstraintSet_android_maxHeight
:
Int
static
val
ConstraintSet_android_maxWidth
:
Int
static
val
ConstraintSet_android_minHeight
:
Int
static
val
ConstraintSet_android_minWidth
:
Int
static
val
ConstraintSet_android_orientation
:
Int
static
val
ConstraintSet_android_rotation
:
Int
static
val
ConstraintSet_android_rotationX
:
Int
static
val
ConstraintSet_android_rotationY
:
Int
static
val
ConstraintSet_android_scaleX
:
Int
static
val
ConstraintSet_android_scaleY
:
Int
static
val
ConstraintSet_android_transformPivotX
:
Int
static
val
ConstraintSet_android_transformPivotY
:
Int
static
val
ConstraintSet_android_translationX
:
Int
static
val
ConstraintSet_android_translationY
:
Int
static
val
ConstraintSet_android_translationZ
:
Int
static
val
ConstraintSet_android_visibility
:
Int
static
val
ConstraintSet_barrierAllowsGoneWidgets
:
Int
static
val
ConstraintSet_barrierDirection
:
Int
static
val
ConstraintSet_chainUseRtl
:
Int
static
val
ConstraintSet_constraint_referenced_ids
:
Int
static
val
ConstraintSet_layout_constrainedHeight
:
Int
static
val
ConstraintSet_layout_constrainedWidth
:
Int
static
val
ConstraintSet_layout_constraintBaseline_creator
:
Int
static
val
ConstraintSet_layout_constraintBaseline_toBaselineOf
:
Int
static
val
ConstraintSet_layout_constraintBottom_creator
:
Int
static
val
ConstraintSet_layout_constraintBottom_toBottomOf
:
Int
static
val
ConstraintSet_layout_constraintBottom_toTopOf
:
Int
static
val
ConstraintSet_layout_constraintCircle
:
Int
static
val
ConstraintSet_layout_constraintCircleAngle
:
Int
static
val
ConstraintSet_layout_constraintCircleRadius
:
Int
static
val
ConstraintSet_layout_constraintDimensionRatio
:
Int
static
val
ConstraintSet_layout_constraintEnd_toEndOf
:
Int
static
val
ConstraintSet_layout_constraintEnd_toStartOf
:
Int
static
val
ConstraintSet_layout_constraintGuide_begin
:
Int
static
val
ConstraintSet_layout_constraintGuide_end
:
Int
static
val
ConstraintSet_layout_constraintGuide_percent
:
Int
static
val
ConstraintSet_layout_constraintHeight_default
:
Int
static
val
ConstraintSet_layout_constraintHeight_max
:
Int
static
val
ConstraintSet_layout_constraintHeight_min
:
Int
static
val
ConstraintSet_layout_constraintHeight_percent
:
Int
static
val
ConstraintSet_layout_constraintHorizontal_bias
:
Int
static
val
ConstraintSet_layout_constraintHorizontal_chainStyle
:
Int
static
val
ConstraintSet_layout_constraintHorizontal_weight
:
Int
static
val
ConstraintSet_layout_constraintLeft_creator
:
Int
static
val
ConstraintSet_layout_constraintLeft_toLeftOf
:
Int
static
val
ConstraintSet_layout_constraintLeft_toRightOf
:
Int
static
val
ConstraintSet_layout_constraintRight_creator
:
Int
static
val
ConstraintSet_layout_constraintRight_toLeftOf
:
Int
static
val
ConstraintSet_layout_constraintRight_toRightOf
:
Int
static
val
ConstraintSet_layout_constraintStart_toEndOf
:
Int
static
val
ConstraintSet_layout_constraintStart_toStartOf
:
Int
static
val
ConstraintSet_layout_constraintTop_creator
:
Int
static
val
ConstraintSet_layout_constraintTop_toBottomOf
:
Int
static
val
ConstraintSet_layout_constraintTop_toTopOf
:
Int
static
val
ConstraintSet_layout_constraintVertical_bias
:
Int
static
val
ConstraintSet_layout_constraintVertical_chainStyle
:
Int
static
val
ConstraintSet_layout_constraintVertical_weight
:
Int
static
val
ConstraintSet_layout_constraintWidth_default
:
Int
static
val
ConstraintSet_layout_constraintWidth_max
:
Int
static
val
ConstraintSet_layout_constraintWidth_min
:
Int
static
val
ConstraintSet_layout_constraintWidth_percent
:
Int
static
val
ConstraintSet_layout_editor_absoluteX
:
Int
static
val
ConstraintSet_layout_editor_absoluteY
:
Int
static
val
ConstraintSet_layout_goneMarginBottom
:
Int
static
val
ConstraintSet_layout_goneMarginEnd
:
Int
static
val
ConstraintSet_layout_goneMarginLeft
:
Int
static
val
ConstraintSet_layout_goneMarginRight
:
Int
static
val
ConstraintSet_layout_goneMarginStart
:
Int
static
val
ConstraintSet_layout_goneMarginTop
:
Int
static
val
CoordinatorLayout
:
IntArray
static
val
CoordinatorLayout_Layout
:
IntArray
static
val
CoordinatorLayout_Layout_android_layout_gravity
:
Int
static
val
CoordinatorLayout_Layout_layout_anchor
:
Int
static
val
CoordinatorLayout_Layout_layout_anchorGravity
:
Int
static
val
CoordinatorLayout_Layout_layout_behavior
:
Int
static
val
CoordinatorLayout_Layout_layout_dodgeInsetEdges
:
Int
static
val
CoordinatorLayout_Layout_layout_insetEdge
:
Int
static
val
CoordinatorLayout_Layout_layout_keyline
:
Int
static
val
CoordinatorLayout_keylines
:
Int
static
val
CoordinatorLayout_statusBarBackground
:
Int
static
val
DesignTheme
:
IntArray
static
val
DesignTheme_bottomSheetDialogTheme
:
Int
static
val
DesignTheme_bottomSheetStyle
:
Int
static
val
DrawerArrowToggle
:
IntArray
static
val
DrawerArrowToggle_arrowHeadLength
:
Int
static
val
DrawerArrowToggle_arrowShaftLength
:
Int
static
val
DrawerArrowToggle_barLength
:
Int
static
val
DrawerArrowToggle_color
:
Int
static
val
DrawerArrowToggle_drawableSize
:
Int
static
val
DrawerArrowToggle_gapBetweenBars
:
Int
static
val
DrawerArrowToggle_spinBars
:
Int
static
val
DrawerArrowToggle_thickness
:
Int
static
val
FloatingActionButton
:
IntArray
static
val
FloatingActionButton_Behavior_Layout
:
IntArray
static
val
FloatingActionButton_Behavior_Layout_behavior_autoHide
:
Int
static
val
FloatingActionButton_backgroundTint
:
Int
static
val
FloatingActionButton_backgroundTintMode
:
Int
static
val
FloatingActionButton_borderWidth
:
Int
static
val
FloatingActionButton_elevation
:
Int
static
val
FloatingActionButton_fabCustomSize
:
Int
static
val
FloatingActionButton_fabSize
:
Int
static
val
FloatingActionButton_hideMotionSpec
:
Int
static
val
FloatingActionButton_hoveredFocusedTranslationZ
:
Int
static
val
FloatingActionButton_maxImageSize
:
Int
static
val
FloatingActionButton_pressedTranslationZ
:
Int
static
val
FloatingActionButton_rippleColor
:
Int
static
val
FloatingActionButton_showMotionSpec
:
Int
static
val
FloatingActionButton_useCompatPadding
:
Int
static
val
FlowLayout
:
IntArray
static
val
FlowLayout_itemSpacing
:
Int
static
val
FlowLayout_lineSpacing
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
ForegroundLinearLayout
:
IntArray
static
val
ForegroundLinearLayout_android_foreground
:
Int
static
val
ForegroundLinearLayout_android_foregroundGravity
:
Int
static
val
ForegroundLinearLayout_foregroundInsidePadding
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
static
val
LinearConstraintLayout
:
IntArray
static
val
LinearConstraintLayout_android_orientation
:
Int
static
val
LinearLayoutCompat
:
IntArray
static
val
LinearLayoutCompat_Layout
:
IntArray
static
val
LinearLayoutCompat_Layout_android_layout_gravity
:
Int
static
val
LinearLayoutCompat_Layout_android_layout_height
:
Int
static
val
LinearLayoutCompat_Layout_android_layout_weight
:
Int
static
val
LinearLayoutCompat_Layout_android_layout_width
:
Int
static
val
LinearLayoutCompat_android_baselineAligned
:
Int
static
val
LinearLayoutCompat_android_baselineAlignedChildIndex
:
Int
static
val
LinearLayoutCompat_android_gravity
:
Int
static
val
LinearLayoutCompat_android_orientation
:
Int
static
val
LinearLayoutCompat_android_weightSum
:
Int
static
val
LinearLayoutCompat_divider
:
Int
static
val
LinearLayoutCompat_dividerPadding
:
Int
static
val
LinearLayoutCompat_measureWithLargestChild
:
Int
static
val
LinearLayoutCompat_showDividers
:
Int
static
val
ListPopupWindow
:
IntArray
static
val
ListPopupWindow_android_dropDownHorizontalOffset
:
Int
static
val
ListPopupWindow_android_dropDownVerticalOffset
:
Int
static
val
MaterialButton
:
IntArray
static
val
MaterialButton_android_insetBottom
:
Int
static
val
MaterialButton_android_insetLeft
:
Int
static
val
MaterialButton_android_insetRight
:
Int
static
val
MaterialButton_android_insetTop
:
Int
static
val
MaterialButton_backgroundTint
:
Int
static
val
MaterialButton_backgroundTintMode
:
Int
static
val
MaterialButton_cornerRadius
:
Int
static
val
MaterialButton_icon
:
Int
static
val
MaterialButton_iconGravity
:
Int
static
val
MaterialButton_iconPadding
:
Int
static
val
MaterialButton_iconSize
:
Int
static
val
MaterialButton_iconTint
:
Int
static
val
MaterialButton_iconTintMode
:
Int
static
val
MaterialButton_rippleColor
:
Int
static
val
MaterialButton_strokeColor
:
Int
static
val
MaterialButton_strokeWidth
:
Int
static
val
MaterialCardView
:
IntArray
static
val
MaterialCardView_strokeColor
:
Int
static
val
MaterialCardView_strokeWidth
:
Int
static
val
MaterialComponentsTheme
:
IntArray
static
val
MaterialComponentsTheme_bottomSheetDialogTheme
:
Int
static
val
MaterialComponentsTheme_bottomSheetStyle
:
Int
static
val
MaterialComponentsTheme_chipGroupStyle
:
Int
static
val
MaterialComponentsTheme_chipStandaloneStyle
:
Int
static
val
MaterialComponentsTheme_chipStyle
:
Int
static
val
MaterialComponentsTheme_colorAccent
:
Int
static
val
MaterialComponentsTheme_colorBackgroundFloating
:
Int
static
val
MaterialComponentsTheme_colorPrimary
:
Int
static
val
MaterialComponentsTheme_colorPrimaryDark
:
Int
static
val
MaterialComponentsTheme_colorSecondary
:
Int
static
val
MaterialComponentsTheme_editTextStyle
:
Int
static
val
MaterialComponentsTheme_floatingActionButtonStyle
:
Int
static
val
MaterialComponentsTheme_materialButtonStyle
:
Int
static
val
MaterialComponentsTheme_materialCardViewStyle
:
Int
static
val
MaterialComponentsTheme_navigationViewStyle
:
Int
static
val
MaterialComponentsTheme_scrimBackground
:
Int
static
val
MaterialComponentsTheme_snackbarButtonStyle
:
Int
static
val
MaterialComponentsTheme_tabStyle
:
Int
static
val
MaterialComponentsTheme_textAppearanceBody1
:
Int
static
val
MaterialComponentsTheme_textAppearanceBody2
:
Int
static
val
MaterialComponentsTheme_textAppearanceButton
:
Int
static
val
MaterialComponentsTheme_textAppearanceCaption
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline1
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline2
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline3
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline4
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline5
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline6
:
Int
static
val
MaterialComponentsTheme_textAppearanceOverline
:
Int
static
val
MaterialComponentsTheme_textAppearanceSubtitle1
:
Int
static
val
MaterialComponentsTheme_textAppearanceSubtitle2
:
Int
static
val
MaterialComponentsTheme_textInputStyle
:
Int
static
val
MenuGroup
:
IntArray
static
val
MenuGroup_android_checkableBehavior
:
Int
static
val
MenuGroup_android_enabled
:
Int
static
val
MenuGroup_android_id
:
Int
static
val
MenuGroup_android_menuCategory
:
Int
static
val
MenuGroup_android_orderInCategory
:
Int
static
val
MenuGroup_android_visible
:
Int
static
val
MenuItem
:
IntArray
static
val
MenuItem_actionLayout
:
Int
static
val
MenuItem_actionProviderClass
:
Int
static
val
MenuItem_actionViewClass
:
Int
static
val
MenuItem_alphabeticModifiers
:
Int
static
val
MenuItem_android_alphabeticShortcut
:
Int
static
val
MenuItem_android_checkable
:
Int
static
val
MenuItem_android_checked
:
Int
static
val
MenuItem_android_enabled
:
Int
static
val
MenuItem_android_icon
:
Int
static
val
MenuItem_android_id
:
Int
static
val
MenuItem_android_menuCategory
:
Int
static
val
MenuItem_android_numericShortcut
:
Int
static
val
MenuItem_android_onClick
:
Int
static
val
MenuItem_android_orderInCategory
:
Int
static
val
MenuItem_android_title
:
Int
static
val
MenuItem_android_titleCondensed
:
Int
static
val
MenuItem_android_visible
:
Int
static
val
MenuItem_contentDescription
:
Int
static
val
MenuItem_iconTint
:
Int
static
val
MenuItem_iconTintMode
:
Int
static
val
MenuItem_numericModifiers
:
Int
static
val
MenuItem_showAsAction
:
Int
static
val
MenuItem_tooltipText
:
Int
static
val
MenuView
:
IntArray
static
val
MenuView_android_headerBackground
:
Int
static
val
MenuView_android_horizontalDivider
:
Int
static
val
MenuView_android_itemBackground
:
Int
static
val
MenuView_android_itemIconDisabledAlpha
:
Int
static
val
MenuView_android_itemTextAppearance
:
Int
static
val
MenuView_android_verticalDivider
:
Int
static
val
MenuView_android_windowAnimationStyle
:
Int
static
val
MenuView_preserveIconSpacing
:
Int
static
val
MenuView_subMenuArrow
:
Int
static
val
NavigationView
:
IntArray
static
val
NavigationView_android_background
:
Int
static
val
NavigationView_android_fitsSystemWindows
:
Int
static
val
NavigationView_android_maxWidth
:
Int
static
val
NavigationView_elevation
:
Int
static
val
NavigationView_headerLayout
:
Int
static
val
NavigationView_itemBackground
:
Int
static
val
NavigationView_itemHorizontalPadding
:
Int
static
val
NavigationView_itemIconPadding
:
Int
static
val
NavigationView_itemIconTint
:
Int
static
val
NavigationView_itemTextAppearance
:
Int
static
val
NavigationView_itemTextColor
:
Int
static
val
NavigationView_menu
:
Int
static
val
PopupWindow
:
IntArray
static
val
PopupWindowBackgroundState
:
IntArray
static
val
PopupWindowBackgroundState_state_above_anchor
:
Int
static
val
PopupWindow_android_popupAnimationStyle
:
Int
static
val
PopupWindow_android_popupBackground
:
Int
static
val
PopupWindow_overlapAnchor
:
Int
static
val
RecycleListView
:
IntArray
static
val
RecycleListView_paddingBottomNoButtons
:
Int
static
val
RecycleListView_paddingTopNoTitle
:
Int
static
val
RecyclerView
:
IntArray
static
val
RecyclerView_android_descendantFocusability
:
Int
static
val
RecyclerView_android_orientation
:
Int
static
val
RecyclerView_fastScrollEnabled
:
Int
static
val
RecyclerView_fastScrollHorizontalThumbDrawable
:
Int
static
val
RecyclerView_fastScrollHorizontalTrackDrawable
:
Int
static
val
RecyclerView_fastScrollVerticalThumbDrawable
:
Int
static
val
RecyclerView_fastScrollVerticalTrackDrawable
:
Int
static
val
RecyclerView_layoutManager
:
Int
static
val
RecyclerView_reverseLayout
:
Int
static
val
RecyclerView_spanCount
:
Int
static
val
RecyclerView_stackFromEnd
:
Int
static
val
ScrimInsetsFrameLayout
:
IntArray
static
val
ScrimInsetsFrameLayout_insetForeground
:
Int
static
val
ScrollingViewBehavior_Layout
:
IntArray
static
val
ScrollingViewBehavior_Layout_behavior_overlapTop
:
Int
static
val
SearchView
:
IntArray
static
val
SearchView_android_focusable
:
Int
static
val
SearchView_android_imeOptions
:
Int
static
val
SearchView_android_inputType
:
Int
static
val
SearchView_android_maxWidth
:
Int
static
val
SearchView_closeIcon
:
Int
static
val
SearchView_commitIcon
:
Int
static
val
SearchView_defaultQueryHint
:
Int
static
val
SearchView_goIcon
:
Int
static
val
SearchView_iconifiedByDefault
:
Int
static
val
SearchView_layout
:
Int
static
val
SearchView_queryBackground
:
Int
static
val
SearchView_queryHint
:
Int
static
val
SearchView_searchHintIcon
:
Int
static
val
SearchView_searchIcon
:
Int
static
val
SearchView_submitBackground
:
Int
static
val
SearchView_suggestionRowLayout
:
Int
static
val
SearchView_voiceIcon
:
Int
static
val
Snackbar
:
IntArray
static
val
SnackbarLayout
:
IntArray
static
val
SnackbarLayout_android_maxWidth
:
Int
static
val
SnackbarLayout_elevation
:
Int
static
val
SnackbarLayout_maxActionInlineWidth
:
Int
static
val
Snackbar_snackbarButtonStyle
:
Int
static
val
Snackbar_snackbarStyle
:
Int
static
val
Spinner
:
IntArray
static
val
Spinner_android_dropDownWidth
:
Int
static
val
Spinner_android_entries
:
Int
static
val
Spinner_android_popupBackground
:
Int
static
val
Spinner_android_prompt
:
Int
static
val
Spinner_popupTheme
:
Int
static
val
StateListDrawable
:
IntArray
static
val
StateListDrawableItem
:
IntArray
static
val
StateListDrawableItem_android_drawable
:
Int
static
val
StateListDrawable_android_constantSize
:
Int
static
val
StateListDrawable_android_dither
:
Int
static
val
StateListDrawable_android_enterFadeDuration
:
Int
static
val
StateListDrawable_android_exitFadeDuration
:
Int
static
val
StateListDrawable_android_variablePadding
:
Int
static
val
StateListDrawable_android_visible
:
Int
static
val
SwitchCompat
:
IntArray
static
val
SwitchCompat_android_textOff
:
Int
static
val
SwitchCompat_android_textOn
:
Int
static
val
SwitchCompat_android_thumb
:
Int
static
val
SwitchCompat_showText
:
Int
static
val
SwitchCompat_splitTrack
:
Int
static
val
SwitchCompat_switchMinWidth
:
Int
static
val
SwitchCompat_switchPadding
:
Int
static
val
SwitchCompat_switchTextAppearance
:
Int
static
val
SwitchCompat_thumbTextPadding
:
Int
static
val
SwitchCompat_thumbTint
:
Int
static
val
SwitchCompat_thumbTintMode
:
Int
static
val
SwitchCompat_track
:
Int
static
val
SwitchCompat_trackTint
:
Int
static
val
SwitchCompat_trackTintMode
:
Int
static
val
TabItem
:
IntArray
static
val
TabItem_android_icon
:
Int
static
val
TabItem_android_layout
:
Int
static
val
TabItem_android_text
:
Int
static
val
TabLayout
:
IntArray
static
val
TabLayout_tabBackground
:
Int
static
val
TabLayout_tabContentStart
:
Int
static
val
TabLayout_tabGravity
:
Int
static
val
TabLayout_tabIconTint
:
Int
static
val
TabLayout_tabIconTintMode
:
Int
static
val
TabLayout_tabIndicator
:
Int
static
val
TabLayout_tabIndicatorAnimationDuration
:
Int
static
val
TabLayout_tabIndicatorColor
:
Int
static
val
TabLayout_tabIndicatorFullWidth
:
Int
static
val
TabLayout_tabIndicatorGravity
:
Int
static
val
TabLayout_tabIndicatorHeight
:
Int
static
val
TabLayout_tabInlineLabel
:
Int
static
val
TabLayout_tabMaxWidth
:
Int
static
val
TabLayout_tabMinWidth
:
Int
static
val
TabLayout_tabMode
:
Int
static
val
TabLayout_tabPadding
:
Int
static
val
TabLayout_tabPaddingBottom
:
Int
static
val
TabLayout_tabPaddingEnd
:
Int
static
val
TabLayout_tabPaddingStart
:
Int
static
val
TabLayout_tabPaddingTop
:
Int
static
val
TabLayout_tabRippleColor
:
Int
static
val
TabLayout_tabSelectedTextColor
:
Int
static
val
TabLayout_tabTextAppearance
:
Int
static
val
TabLayout_tabTextColor
:
Int
static
val
TabLayout_tabUnboundedRipple
:
Int
static
val
TextAppearance
:
IntArray
static
val
TextAppearance_android_fontFamily
:
Int
static
val
TextAppearance_android_shadowColor
:
Int
static
val
TextAppearance_android_shadowDx
:
Int
static
val
TextAppearance_android_shadowDy
:
Int
static
val
TextAppearance_android_shadowRadius
:
Int
static
val
TextAppearance_android_textColor
:
Int
static
val
TextAppearance_android_textColorHint
:
Int
static
val
TextAppearance_android_textColorLink
:
Int
static
val
TextAppearance_android_textSize
:
Int
static
val
TextAppearance_android_textStyle
:
Int
static
val
TextAppearance_android_typeface
:
Int
static
val
TextAppearance_fontFamily
:
Int
static
val
TextAppearance_textAllCaps
:
Int
static
val
TextInputLayout
:
IntArray
static
val
TextInputLayout_android_hint
:
Int
static
val
TextInputLayout_android_textColorHint
:
Int
static
val
TextInputLayout_boxBackgroundColor
:
Int
static
val
TextInputLayout_boxBackgroundMode
:
Int
static
val
TextInputLayout_boxCollapsedPaddingTop
:
Int
static
val
TextInputLayout_boxCornerRadiusBottomEnd
:
Int
static
val
TextInputLayout_boxCornerRadiusBottomStart
:
Int
static
val
TextInputLayout_boxCornerRadiusTopEnd
:
Int
static
val
TextInputLayout_boxCornerRadiusTopStart
:
Int
static
val
TextInputLayout_boxStrokeColor
:
Int
static
val
TextInputLayout_boxStrokeWidth
:
Int
static
val
TextInputLayout_counterEnabled
:
Int
static
val
TextInputLayout_counterMaxLength
:
Int
static
val
TextInputLayout_counterOverflowTextAppearance
:
Int
static
val
TextInputLayout_counterTextAppearance
:
Int
static
val
TextInputLayout_errorEnabled
:
Int
static
val
TextInputLayout_errorTextAppearance
:
Int
static
val
TextInputLayout_helperText
:
Int
static
val
TextInputLayout_helperTextEnabled
:
Int
static
val
TextInputLayout_helperTextTextAppearance
:
Int
static
val
TextInputLayout_hintAnimationEnabled
:
Int
static
val
TextInputLayout_hintEnabled
:
Int
static
val
TextInputLayout_hintTextAppearance
:
Int
static
val
TextInputLayout_passwordToggleContentDescription
:
Int
static
val
TextInputLayout_passwordToggleDrawable
:
Int
static
val
TextInputLayout_passwordToggleEnabled
:
Int
static
val
TextInputLayout_passwordToggleTint
:
Int
static
val
TextInputLayout_passwordToggleTintMode
:
Int
static
val
ThemeEnforcement
:
IntArray
static
val
ThemeEnforcement_android_textAppearance
:
Int
static
val
ThemeEnforcement_enforceMaterialTheme
:
Int
static
val
ThemeEnforcement_enforceTextAppearance
:
Int
static
val
Toolbar
:
IntArray
static
val
Toolbar_android_gravity
:
Int
static
val
Toolbar_android_minHeight
:
Int
static
val
Toolbar_buttonGravity
:
Int
static
val
Toolbar_collapseContentDescription
:
Int
static
val
Toolbar_collapseIcon
:
Int
static
val
Toolbar_contentInsetEnd
:
Int
static
val
Toolbar_contentInsetEndWithActions
:
Int
static
val
Toolbar_contentInsetLeft
:
Int
static
val
Toolbar_contentInsetRight
:
Int
static
val
Toolbar_contentInsetStart
:
Int
static
val
Toolbar_contentInsetStartWithNavigation
:
Int
static
val
Toolbar_logo
:
Int
static
val
Toolbar_logoDescription
:
Int
static
val
Toolbar_maxButtonHeight
:
Int
static
val
Toolbar_navigationContentDescription
:
Int
static
val
Toolbar_navigationIcon
:
Int
static
val
Toolbar_popupTheme
:
Int
static
val
Toolbar_subtitle
:
Int
static
val
Toolbar_subtitleTextAppearance
:
Int
static
val
Toolbar_subtitleTextColor
:
Int
static
val
Toolbar_title
:
Int
static
val
Toolbar_titleMargin
:
Int
static
val
Toolbar_titleMarginBottom
:
Int
static
val
Toolbar_titleMarginEnd
:
Int
static
val
Toolbar_titleMarginStart
:
Int
static
val
Toolbar_titleMarginTop
:
Int
static
val
Toolbar_titleMargins
:
Int
static
val
Toolbar_titleTextAppearance
:
Int
static
val
Toolbar_titleTextColor
:
Int
static
val
View
:
IntArray
static
val
ViewBackgroundHelper
:
IntArray
static
val
ViewBackgroundHelper_android_background
:
Int
static
val
ViewBackgroundHelper_backgroundTint
:
Int
static
val
ViewBackgroundHelper_backgroundTintMode
:
Int
static
val
ViewStubCompat
:
IntArray
static
val
ViewStubCompat_android_id
:
Int
static
val
ViewStubCompat_android_inflatedId
:
Int
static
val
ViewStubCompat_android_layout
:
Int
static
val
View_android_focusable
:
Int
static
val
View_android_theme
:
Int
static
val
View_paddingEnd
:
Int
static
val
View_paddingStart
:
Int
static
val
View_theme
:
Int
class
R
Module Contents
R
(
)
class
anim
Module Contents
anim
(
)
static
val
abc_fade_in
:
Int
static
val
abc_fade_out
:
Int
static
val
abc_grow_fade_in_from_bottom
:
Int
static
val
abc_popup_enter
:
Int
static
val
abc_popup_exit
:
Int
static
val
abc_shrink_fade_out_from_bottom
:
Int
static
val
abc_slide_in_bottom
:
Int
static
val
abc_slide_in_top
:
Int
static
val
abc_slide_out_bottom
:
Int
static
val
abc_slide_out_top
:
Int
static
val
abc_tooltip_enter
:
Int
static
val
abc_tooltip_exit
:
Int
static
val
design_bottom_sheet_slide_in
:
Int
static
val
design_bottom_sheet_slide_out
:
Int
static
val
design_snackbar_in
:
Int
static
val
design_snackbar_out
:
Int
class
animator
Module Contents
animator
(
)
static
val
design_appbar_state_list_animator
:
Int
static
val
design_fab_hide_motion_spec
:
Int
static
val
design_fab_show_motion_spec
:
Int
static
val
mtrl_btn_state_list_anim
:
Int
static
val
mtrl_btn_unelevated_state_list_anim
:
Int
static
val
mtrl_chip_state_list_anim
:
Int
static
val
mtrl_fab_hide_motion_spec
:
Int
static
val
mtrl_fab_show_motion_spec
:
Int
static
val
mtrl_fab_transformation_sheet_collapse_spec
:
Int
static
val
mtrl_fab_transformation_sheet_expand_spec
:
Int
class
attr
Module Contents
attr
(
)
static
val
actionBarDivider
:
Int
static
val
actionBarItemBackground
:
Int
static
val
actionBarPopupTheme
:
Int
static
val
actionBarSize
:
Int
static
val
actionBarSplitStyle
:
Int
static
val
actionBarStyle
:
Int
static
val
actionBarTabBarStyle
:
Int
static
val
actionBarTabStyle
:
Int
static
val
actionBarTabTextStyle
:
Int
static
val
actionBarTheme
:
Int
static
val
actionBarWidgetTheme
:
Int
static
val
actionButtonStyle
:
Int
static
val
actionDropDownStyle
:
Int
static
val
actionLayout
:
Int
static
val
actionMenuTextAppearance
:
Int
static
val
actionMenuTextColor
:
Int
static
val
actionModeBackground
:
Int
static
val
actionModeCloseButtonStyle
:
Int
static
val
actionModeCloseDrawable
:
Int
static
val
actionModeCopyDrawable
:
Int
static
val
actionModeCutDrawable
:
Int
static
val
actionModeFindDrawable
:
Int
static
val
actionModePasteDrawable
:
Int
static
val
actionModePopupWindowStyle
:
Int
static
val
actionModeSelectAllDrawable
:
Int
static
val
actionModeShareDrawable
:
Int
static
val
actionModeSplitBackground
:
Int
static
val
actionModeStyle
:
Int
static
val
actionModeWebSearchDrawable
:
Int
static
val
actionOverflowButtonStyle
:
Int
static
val
actionOverflowMenuStyle
:
Int
static
val
actionProviderClass
:
Int
static
val
actionViewClass
:
Int
static
val
activityChooserViewStyle
:
Int
static
val
alertDialogButtonGroupStyle
:
Int
static
val
alertDialogCenterButtons
:
Int
static
val
alertDialogStyle
:
Int
static
val
alertDialogTheme
:
Int
static
val
allowStacking
:
Int
static
val
alpha
:
Int
static
val
alphabeticModifiers
:
Int
static
val
arrowHeadLength
:
Int
static
val
arrowShaftLength
:
Int
static
val
autoCompleteTextViewStyle
:
Int
static
val
autoSizeMaxTextSize
:
Int
static
val
autoSizeMinTextSize
:
Int
static
val
autoSizePresetSizes
:
Int
static
val
autoSizeStepGranularity
:
Int
static
val
autoSizeTextType
:
Int
static
val
background
:
Int
static
val
backgroundSplit
:
Int
static
val
backgroundStacked
:
Int
static
val
backgroundTint
:
Int
static
val
backgroundTintMode
:
Int
static
val
barLength
:
Int
static
val
barrierAllowsGoneWidgets
:
Int
static
val
barrierDirection
:
Int
static
val
behavior_autoHide
:
Int
static
val
behavior_fitToContents
:
Int
static
val
behavior_hideable
:
Int
static
val
behavior_overlapTop
:
Int
static
val
behavior_peekHeight
:
Int
static
val
behavior_skipCollapsed
:
Int
static
val
borderWidth
:
Int
static
val
borderlessButtonStyle
:
Int
static
val
bottomAppBarStyle
:
Int
static
val
bottomNavigationStyle
:
Int
static
val
bottomSheetDialogTheme
:
Int
static
val
bottomSheetStyle
:
Int
static
val
boxBackgroundColor
:
Int
static
val
boxBackgroundMode
:
Int
static
val
boxCollapsedPaddingTop
:
Int
static
val
boxCornerRadiusBottomEnd
:
Int
static
val
boxCornerRadiusBottomStart
:
Int
static
val
boxCornerRadiusTopEnd
:
Int
static
val
boxCornerRadiusTopStart
:
Int
static
val
boxStrokeColor
:
Int
static
val
boxStrokeWidth
:
Int
static
val
buttonBarButtonStyle
:
Int
static
val
buttonBarNegativeButtonStyle
:
Int
static
val
buttonBarNeutralButtonStyle
:
Int
static
val
buttonBarPositiveButtonStyle
:
Int
static
val
buttonBarStyle
:
Int
static
val
buttonGravity
:
Int
static
val
buttonIconDimen
:
Int
static
val
buttonPanelSideLayout
:
Int
static
val
buttonStyle
:
Int
static
val
buttonStyleSmall
:
Int
static
val
buttonTint
:
Int
static
val
buttonTintMode
:
Int
static
val
cardBackgroundColor
:
Int
static
val
cardCornerRadius
:
Int
static
val
cardElevation
:
Int
static
val
cardMaxElevation
:
Int
static
val
cardPreventCornerOverlap
:
Int
static
val
cardUseCompatPadding
:
Int
static
val
cardViewStyle
:
Int
static
val
chainUseRtl
:
Int
static
val
checkboxStyle
:
Int
static
val
checkedChip
:
Int
static
val
checkedIcon
:
Int
static
val
checkedIconEnabled
:
Int
static
val
checkedIconVisible
:
Int
static
val
checkedTextViewStyle
:
Int
static
val
chipBackgroundColor
:
Int
static
val
chipCornerRadius
:
Int
static
val
chipEndPadding
:
Int
static
val
chipGroupStyle
:
Int
static
val
chipIcon
:
Int
static
val
chipIconEnabled
:
Int
static
val
chipIconSize
:
Int
static
val
chipIconTint
:
Int
static
val
chipIconVisible
:
Int
static
val
chipMinHeight
:
Int
static
val
chipSpacing
:
Int
static
val
chipSpacingHorizontal
:
Int
static
val
chipSpacingVertical
:
Int
static
val
chipStandaloneStyle
:
Int
static
val
chipStartPadding
:
Int
static
val
chipStrokeColor
:
Int
static
val
chipStrokeWidth
:
Int
static
val
chipStyle
:
Int
static
val
closeIcon
:
Int
static
val
closeIconEnabled
:
Int
static
val
closeIconEndPadding
:
Int
static
val
closeIconSize
:
Int
static
val
closeIconStartPadding
:
Int
static
val
closeIconTint
:
Int
static
val
closeIconVisible
:
Int
static
val
closeItemLayout
:
Int
static
val
collapseContentDescription
:
Int
static
val
collapseIcon
:
Int
static
val
collapsedTitleGravity
:
Int
static
val
collapsedTitleTextAppearance
:
Int
static
val
color
:
Int
static
val
colorAccent
:
Int
static
val
colorBackgroundFloating
:
Int
static
val
colorButtonNormal
:
Int
static
val
colorControlActivated
:
Int
static
val
colorControlHighlight
:
Int
static
val
colorControlNormal
:
Int
static
val
colorError
:
Int
static
val
colorPrimary
:
Int
static
val
colorPrimaryDark
:
Int
static
val
colorSecondary
:
Int
static
val
colorSwitchThumbNormal
:
Int
static
val
commitIcon
:
Int
static
val
constraintSet
:
Int
static
val
constraint_referenced_ids
:
Int
static
val
content
:
Int
static
val
contentDescription
:
Int
static
val
contentInsetEnd
:
Int
static
val
contentInsetEndWithActions
:
Int
static
val
contentInsetLeft
:
Int
static
val
contentInsetRight
:
Int
static
val
contentInsetStart
:
Int
static
val
contentInsetStartWithNavigation
:
Int
static
val
contentPadding
:
Int
static
val
contentPaddingBottom
:
Int
static
val
contentPaddingLeft
:
Int
static
val
contentPaddingRight
:
Int
static
val
contentPaddingTop
:
Int
static
val
contentScrim
:
Int
static
val
controlBackground
:
Int
static
val
coordinatorLayoutStyle
:
Int
static
val
cornerRadius
:
Int
static
val
counterEnabled
:
Int
static
val
counterMaxLength
:
Int
static
val
counterOverflowTextAppearance
:
Int
static
val
counterTextAppearance
:
Int
static
val
customNavigationLayout
:
Int
static
val
defaultQueryHint
:
Int
static
val
dialogCornerRadius
:
Int
static
val
dialogPreferredPadding
:
Int
static
val
dialogTheme
:
Int
static
val
displayOptions
:
Int
static
val
divider
:
Int
static
val
dividerHorizontal
:
Int
static
val
dividerPadding
:
Int
static
val
dividerVertical
:
Int
static
val
drawableSize
:
Int
static
val
drawerArrowStyle
:
Int
static
val
dropDownListViewStyle
:
Int
static
val
dropdownListPreferredItemHeight
:
Int
static
val
editTextBackground
:
Int
static
val
editTextColor
:
Int
static
val
editTextStyle
:
Int
static
val
elevation
:
Int
static
val
emptyVisibility
:
Int
static
val
enforceMaterialTheme
:
Int
static
val
enforceTextAppearance
:
Int
static
val
errorEnabled
:
Int
static
val
errorTextAppearance
:
Int
static
val
expandActivityOverflowButtonDrawable
:
Int
static
val
expanded
:
Int
static
val
expandedTitleGravity
:
Int
static
val
expandedTitleMargin
:
Int
static
val
expandedTitleMarginBottom
:
Int
static
val
expandedTitleMarginEnd
:
Int
static
val
expandedTitleMarginStart
:
Int
static
val
expandedTitleMarginTop
:
Int
static
val
expandedTitleTextAppearance
:
Int
static
val
fabAlignmentMode
:
Int
static
val
fabCradleMargin
:
Int
static
val
fabCradleRoundedCornerRadius
:
Int
static
val
fabCradleVerticalOffset
:
Int
static
val
fabCustomSize
:
Int
static
val
fabSize
:
Int
static
val
fastScrollEnabled
:
Int
static
val
fastScrollHorizontalThumbDrawable
:
Int
static
val
fastScrollHorizontalTrackDrawable
:
Int
static
val
fastScrollVerticalThumbDrawable
:
Int
static
val
fastScrollVerticalTrackDrawable
:
Int
static
val
firstBaselineToTopHeight
:
Int
static
val
floatingActionButtonStyle
:
Int
static
val
font
:
Int
static
val
fontFamily
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
foregroundInsidePadding
:
Int
static
val
gapBetweenBars
:
Int
static
val
goIcon
:
Int
static
val
headerLayout
:
Int
static
val
height
:
Int
static
val
helperText
:
Int
static
val
helperTextEnabled
:
Int
static
val
helperTextTextAppearance
:
Int
static
val
hideMotionSpec
:
Int
static
val
hideOnContentScroll
:
Int
static
val
hideOnScroll
:
Int
static
val
hintAnimationEnabled
:
Int
static
val
hintEnabled
:
Int
static
val
hintTextAppearance
:
Int
static
val
homeAsUpIndicator
:
Int
static
val
homeLayout
:
Int
static
val
hoveredFocusedTranslationZ
:
Int
static
val
icon
:
Int
static
val
iconEndPadding
:
Int
static
val
iconGravity
:
Int
static
val
iconPadding
:
Int
static
val
iconSize
:
Int
static
val
iconStartPadding
:
Int
static
val
iconTint
:
Int
static
val
iconTintMode
:
Int
static
val
iconifiedByDefault
:
Int
static
val
imageButtonStyle
:
Int
static
val
indeterminateProgressStyle
:
Int
static
val
initialActivityCount
:
Int
static
val
insetForeground
:
Int
static
val
isLightTheme
:
Int
static
val
itemBackground
:
Int
static
val
itemHorizontalPadding
:
Int
static
val
itemHorizontalTranslationEnabled
:
Int
static
val
itemIconPadding
:
Int
static
val
itemIconSize
:
Int
static
val
itemIconTint
:
Int
static
val
itemPadding
:
Int
static
val
itemSpacing
:
Int
static
val
itemTextAppearance
:
Int
static
val
itemTextAppearanceActive
:
Int
static
val
itemTextAppearanceInactive
:
Int
static
val
itemTextColor
:
Int
static
val
keylines
:
Int
static
val
labelVisibilityMode
:
Int
static
val
lastBaselineToBottomHeight
:
Int
static
val
layout
:
Int
static
val
layoutManager
:
Int
static
val
layout_anchor
:
Int
static
val
layout_anchorGravity
:
Int
static
val
layout_behavior
:
Int
static
val
layout_collapseMode
:
Int
static
val
layout_collapseParallaxMultiplier
:
Int
static
val
layout_constrainedHeight
:
Int
static
val
layout_constrainedWidth
:
Int
static
val
layout_constraintBaseline_creator
:
Int
static
val
layout_constraintBaseline_toBaselineOf
:
Int
static
val
layout_constraintBottom_creator
:
Int
static
val
layout_constraintBottom_toBottomOf
:
Int
static
val
layout_constraintBottom_toTopOf
:
Int
static
val
layout_constraintCircle
:
Int
static
val
layout_constraintCircleAngle
:
Int
static
val
layout_constraintCircleRadius
:
Int
static
val
layout_constraintDimensionRatio
:
Int
static
val
layout_constraintEnd_toEndOf
:
Int
static
val
layout_constraintEnd_toStartOf
:
Int
static
val
layout_constraintGuide_begin
:
Int
static
val
layout_constraintGuide_end
:
Int
static
val
layout_constraintGuide_percent
:
Int
static
val
layout_constraintHeight_default
:
Int
static
val
layout_constraintHeight_max
:
Int
static
val
layout_constraintHeight_min
:
Int
static
val
layout_constraintHeight_percent
:
Int
static
val
layout_constraintHorizontal_bias
:
Int
static
val
layout_constraintHorizontal_chainStyle
:
Int
static
val
layout_constraintHorizontal_weight
:
Int
static
val
layout_constraintLeft_creator
:
Int
static
val
layout_constraintLeft_toLeftOf
:
Int
static
val
layout_constraintLeft_toRightOf
:
Int
static
val
layout_constraintRight_creator
:
Int
static
val
layout_constraintRight_toLeftOf
:
Int
static
val
layout_constraintRight_toRightOf
:
Int
static
val
layout_constraintStart_toEndOf
:
Int
static
val
layout_constraintStart_toStartOf
:
Int
static
val
layout_constraintTop_creator
:
Int
static
val
layout_constraintTop_toBottomOf
:
Int
static
val
layout_constraintTop_toTopOf
:
Int
static
val
layout_constraintVertical_bias
:
Int
static
val
layout_constraintVertical_chainStyle
:
Int
static
val
layout_constraintVertical_weight
:
Int
static
val
layout_constraintWidth_default
:
Int
static
val
layout_constraintWidth_max
:
Int
static
val
layout_constraintWidth_min
:
Int
static
val
layout_constraintWidth_percent
:
Int
static
val
layout_dodgeInsetEdges
:
Int
static
val
layout_editor_absoluteX
:
Int
static
val
layout_editor_absoluteY
:
Int
static
val
layout_goneMarginBottom
:
Int
static
val
layout_goneMarginEnd
:
Int
static
val
layout_goneMarginLeft
:
Int
static
val
layout_goneMarginRight
:
Int
static
val
layout_goneMarginStart
:
Int
static
val
layout_goneMarginTop
:
Int
static
val
layout_insetEdge
:
Int
static
val
layout_keyline
:
Int
static
val
layout_optimizationLevel
:
Int
static
val
layout_scrollFlags
:
Int
static
val
layout_scrollInterpolator
:
Int
static
val
liftOnScroll
:
Int
static
val
lineHeight
:
Int
static
val
lineSpacing
:
Int
static
val
listChoiceBackgroundIndicator
:
Int
static
val
listDividerAlertDialog
:
Int
static
val
listItemLayout
:
Int
static
val
listLayout
:
Int
static
val
listMenuViewStyle
:
Int
static
val
listPopupWindowStyle
:
Int
static
val
listPreferredItemHeight
:
Int
static
val
listPreferredItemHeightLarge
:
Int
static
val
listPreferredItemHeightSmall
:
Int
static
val
listPreferredItemPaddingLeft
:
Int
static
val
listPreferredItemPaddingRight
:
Int
static
val
logo
:
Int
static
val
logoDescription
:
Int
static
val
materialButtonStyle
:
Int
static
val
materialCardViewStyle
:
Int
static
val
maxActionInlineWidth
:
Int
static
val
maxButtonHeight
:
Int
static
val
maxImageSize
:
Int
static
val
measureWithLargestChild
:
Int
static
val
menu
:
Int
static
val
multiChoiceItemLayout
:
Int
static
val
navigationContentDescription
:
Int
static
val
navigationIcon
:
Int
static
val
navigationMode
:
Int
static
val
navigationViewStyle
:
Int
static
val
numericModifiers
:
Int
static
val
overlapAnchor
:
Int
static
val
paddingBottomNoButtons
:
Int
static
val
paddingEnd
:
Int
static
val
paddingStart
:
Int
static
val
paddingTopNoTitle
:
Int
static
val
panelBackground
:
Int
static
val
panelMenuListTheme
:
Int
static
val
panelMenuListWidth
:
Int
static
val
passwordToggleContentDescription
:
Int
static
val
passwordToggleDrawable
:
Int
static
val
passwordToggleEnabled
:
Int
static
val
passwordToggleTint
:
Int
static
val
passwordToggleTintMode
:
Int
static
val
popupMenuStyle
:
Int
static
val
popupTheme
:
Int
static
val
popupWindowStyle
:
Int
static
val
preserveIconSpacing
:
Int
static
val
pressedTranslationZ
:
Int
static
val
progressBarPadding
:
Int
static
val
progressBarStyle
:
Int
static
val
queryBackground
:
Int
static
val
queryHint
:
Int
static
val
radioButtonStyle
:
Int
static
val
ratingBarStyle
:
Int
static
val
ratingBarStyleIndicator
:
Int
static
val
ratingBarStyleSmall
:
Int
static
val
reverseLayout
:
Int
static
val
rippleColor
:
Int
static
val
scrimAnimationDuration
:
Int
static
val
scrimBackground
:
Int
static
val
scrimVisibleHeightTrigger
:
Int
static
val
searchHintIcon
:
Int
static
val
searchIcon
:
Int
static
val
searchViewStyle
:
Int
static
val
seekBarStyle
:
Int
static
val
selectableItemBackground
:
Int
static
val
selectableItemBackgroundBorderless
:
Int
static
val
showAsAction
:
Int
static
val
showDividers
:
Int
static
val
showMotionSpec
:
Int
static
val
showText
:
Int
static
val
showTitle
:
Int
static
val
singleChoiceItemLayout
:
Int
static
val
singleLine
:
Int
static
val
singleSelection
:
Int
static
val
snackbarButtonStyle
:
Int
static
val
snackbarStyle
:
Int
static
val
spanCount
:
Int
static
val
spinBars
:
Int
static
val
spinnerDropDownItemStyle
:
Int
static
val
spinnerStyle
:
Int
static
val
splitTrack
:
Int
static
val
srcCompat
:
Int
static
val
stackFromEnd
:
Int
static
val
state_above_anchor
:
Int
static
val
state_collapsed
:
Int
static
val
state_collapsible
:
Int
static
val
state_liftable
:
Int
static
val
state_lifted
:
Int
static
val
statusBarBackground
:
Int
static
val
statusBarScrim
:
Int
static
val
strokeColor
:
Int
static
val
strokeWidth
:
Int
static
val
subMenuArrow
:
Int
static
val
submitBackground
:
Int
static
val
subtitle
:
Int
static
val
subtitleTextAppearance
:
Int
static
val
subtitleTextColor
:
Int
static
val
subtitleTextStyle
:
Int
static
val
suggestionRowLayout
:
Int
static
val
switchMinWidth
:
Int
static
val
switchPadding
:
Int
static
val
switchStyle
:
Int
static
val
switchTextAppearance
:
Int
static
val
tabBackground
:
Int
static
val
tabContentStart
:
Int
static
val
tabGravity
:
Int
static
val
tabIconTint
:
Int
static
val
tabIconTintMode
:
Int
static
val
tabIndicator
:
Int
static
val
tabIndicatorAnimationDuration
:
Int
static
val
tabIndicatorColor
:
Int
static
val
tabIndicatorFullWidth
:
Int
static
val
tabIndicatorGravity
:
Int
static
val
tabIndicatorHeight
:
Int
static
val
tabInlineLabel
:
Int
static
val
tabMaxWidth
:
Int
static
val
tabMinWidth
:
Int
static
val
tabMode
:
Int
static
val
tabPadding
:
Int
static
val
tabPaddingBottom
:
Int
static
val
tabPaddingEnd
:
Int
static
val
tabPaddingStart
:
Int
static
val
tabPaddingTop
:
Int
static
val
tabRippleColor
:
Int
static
val
tabSelectedTextColor
:
Int
static
val
tabStyle
:
Int
static
val
tabTextAppearance
:
Int
static
val
tabTextColor
:
Int
static
val
tabUnboundedRipple
:
Int
static
val
textAllCaps
:
Int
static
val
textAppearanceBody1
:
Int
static
val
textAppearanceBody2
:
Int
static
val
textAppearanceButton
:
Int
static
val
textAppearanceCaption
:
Int
static
val
textAppearanceHeadline1
:
Int
static
val
textAppearanceHeadline2
:
Int
static
val
textAppearanceHeadline3
:
Int
static
val
textAppearanceHeadline4
:
Int
static
val
textAppearanceHeadline5
:
Int
static
val
textAppearanceHeadline6
:
Int
static
val
textAppearanceLargePopupMenu
:
Int
static
val
textAppearanceListItem
:
Int
static
val
textAppearanceListItemSecondary
:
Int
static
val
textAppearanceListItemSmall
:
Int
static
val
textAppearanceOverline
:
Int
static
val
textAppearancePopupMenuHeader
:
Int
static
val
textAppearanceSearchResultSubtitle
:
Int
static
val
textAppearanceSearchResultTitle
:
Int
static
val
textAppearanceSmallPopupMenu
:
Int
static
val
textAppearanceSubtitle1
:
Int
static
val
textAppearanceSubtitle2
:
Int
static
val
textColorAlertDialogListItem
:
Int
static
val
textColorSearchUrl
:
Int
static
val
textEndPadding
:
Int
static
val
textInputStyle
:
Int
static
val
textStartPadding
:
Int
static
val
theme
:
Int
static
val
thickness
:
Int
static
val
thumbTextPadding
:
Int
static
val
thumbTint
:
Int
static
val
thumbTintMode
:
Int
static
val
tickMark
:
Int
static
val
tickMarkTint
:
Int
static
val
tickMarkTintMode
:
Int
static
val
tint
:
Int
static
val
tintMode
:
Int
static
val
title
:
Int
static
val
titleEnabled
:
Int
static
val
titleMargin
:
Int
static
val
titleMarginBottom
:
Int
static
val
titleMarginEnd
:
Int
static
val
titleMarginStart
:
Int
static
val
titleMarginTop
:
Int
static
val
titleMargins
:
Int
static
val
titleTextAppearance
:
Int
static
val
titleTextColor
:
Int
static
val
titleTextStyle
:
Int
static
val
toolbarId
:
Int
static
val
toolbarNavigationButtonStyle
:
Int
static
val
toolbarStyle
:
Int
static
val
tooltipForegroundColor
:
Int
static
val
tooltipFrameBackground
:
Int
static
val
tooltipText
:
Int
static
val
track
:
Int
static
val
trackTint
:
Int
static
val
trackTintMode
:
Int
static
val
ttcIndex
:
Int
static
val
useCompatPadding
:
Int
static
val
viewInflaterClass
:
Int
static
val
voiceIcon
:
Int
static
val
windowActionBar
:
Int
static
val
windowActionBarOverlay
:
Int
static
val
windowActionModeOverlay
:
Int
static
val
windowFixedHeightMajor
:
Int
static
val
windowFixedHeightMinor
:
Int
static
val
windowFixedWidthMajor
:
Int
static
val
windowFixedWidthMinor
:
Int
static
val
windowMinWidthMajor
:
Int
static
val
windowMinWidthMinor
:
Int
static
val
windowNoTitle
:
Int
class
bool
Module Contents
bool
(
)
static
val
abc_action_bar_embed_tabs
:
Int
static
val
abc_allow_stacked_button_bar
:
Int
static
val
abc_config_actionMenuItemAllCaps
:
Int
static
val
mtrl_btn_textappearance_all_caps
:
Int
class
color
Module Contents
color
(
)
static
val
abc_background_cache_hint_selector_material_dark
:
Int
static
val
abc_background_cache_hint_selector_material_light
:
Int
static
val
abc_btn_colored_borderless_text_material
:
Int
static
val
abc_btn_colored_text_material
:
Int
static
val
abc_color_highlight_material
:
Int
static
val
abc_hint_foreground_material_dark
:
Int
static
val
abc_hint_foreground_material_light
:
Int
static
val
abc_input_method_navigation_guard
:
Int
static
val
abc_primary_text_disable_only_material_dark
:
Int
static
val
abc_primary_text_disable_only_material_light
:
Int
static
val
abc_primary_text_material_dark
:
Int
static
val
abc_primary_text_material_light
:
Int
static
val
abc_search_url_text
:
Int
static
val
abc_search_url_text_normal
:
Int
static
val
abc_search_url_text_pressed
:
Int
static
val
abc_search_url_text_selected
:
Int
static
val
abc_secondary_text_material_dark
:
Int
static
val
abc_secondary_text_material_light
:
Int
static
val
abc_tint_btn_checkable
:
Int
static
val
abc_tint_default
:
Int
static
val
abc_tint_edittext
:
Int
static
val
abc_tint_seek_thumb
:
Int
static
val
abc_tint_spinner
:
Int
static
val
abc_tint_switch_track
:
Int
static
val
accent_material_dark
:
Int
static
val
accent_material_light
:
Int
static
val
background_floating_material_dark
:
Int
static
val
background_floating_material_light
:
Int
static
val
background_material_dark
:
Int
static
val
background_material_light
:
Int
static
val
bright_foreground_disabled_material_dark
:
Int
static
val
bright_foreground_disabled_material_light
:
Int
static
val
bright_foreground_inverse_material_dark
:
Int
static
val
bright_foreground_inverse_material_light
:
Int
static
val
bright_foreground_material_dark
:
Int
static
val
bright_foreground_material_light
:
Int
static
val
button_material_dark
:
Int
static
val
button_material_light
:
Int
static
val
cardview_dark_background
:
Int
static
val
cardview_light_background
:
Int
static
val
cardview_shadow_end_color
:
Int
static
val
cardview_shadow_start_color
:
Int
static
val
cityListBackgroundColor
:
Int
static
val
colorAccent
:
Int
static
val
colorAccentDark
:
Int
static
val
colorError
:
Int
static
val
colorPrimary
:
Int
static
val
colorPrimaryDark
:
Int
static
val
colorPrimaryLight
:
Int
static
val
design_bottom_navigation_shadow_color
:
Int
static
val
design_default_color_primary
:
Int
static
val
design_default_color_primary_dark
:
Int
static
val
design_error
:
Int
static
val
design_fab_shadow_end_color
:
Int
static
val
design_fab_shadow_mid_color
:
Int
static
val
design_fab_shadow_start_color
:
Int
static
val
design_fab_stroke_end_inner_color
:
Int
static
val
design_fab_stroke_end_outer_color
:
Int
static
val
design_fab_stroke_top_inner_color
:
Int
static
val
design_fab_stroke_top_outer_color
:
Int
static
val
design_snackbar_background_color
:
Int
static
val
design_tint_password_toggle
:
Int
static
val
dim_foreground_disabled_material_dark
:
Int
static
val
dim_foreground_disabled_material_light
:
Int
static
val
dim_foreground_material_dark
:
Int
static
val
dim_foreground_material_light
:
Int
static
val
error_color_material_dark
:
Int
static
val
error_color_material_light
:
Int
static
val
foreground_material_dark
:
Int
static
val
foreground_material_light
:
Int
static
val
highlighted_text_material_dark
:
Int
static
val
highlighted_text_material_light
:
Int
static
val
ic_launcher_background
:
Int
static
val
loginPageBackgroundColor
:
Int
static
val
material_blue_grey_800
:
Int
static
val
material_blue_grey_900
:
Int
static
val
material_blue_grey_950
:
Int
static
val
material_deep_teal_200
:
Int
static
val
material_deep_teal_500
:
Int
static
val
material_grey_100
:
Int
static
val
material_grey_300
:
Int
static
val
material_grey_50
:
Int
static
val
material_grey_600
:
Int
static
val
material_grey_800
:
Int
static
val
material_grey_850
:
Int
static
val
material_grey_900
:
Int
static
val
mtrl_bottom_nav_colored_item_tint
:
Int
static
val
mtrl_bottom_nav_item_tint
:
Int
static
val
mtrl_btn_bg_color_disabled
:
Int
static
val
mtrl_btn_bg_color_selector
:
Int
static
val
mtrl_btn_ripple_color
:
Int
static
val
mtrl_btn_stroke_color_selector
:
Int
static
val
mtrl_btn_text_btn_ripple_color
:
Int
static
val
mtrl_btn_text_color_disabled
:
Int
static
val
mtrl_btn_text_color_selector
:
Int
static
val
mtrl_btn_transparent_bg_color
:
Int
static
val
mtrl_chip_background_color
:
Int
static
val
mtrl_chip_close_icon_tint
:
Int
static
val
mtrl_chip_ripple_color
:
Int
static
val
mtrl_chip_text_color
:
Int
static
val
mtrl_fab_ripple_color
:
Int
static
val
mtrl_scrim_color
:
Int
static
val
mtrl_tabs_colored_ripple_color
:
Int
static
val
mtrl_tabs_icon_color_selector
:
Int
static
val
mtrl_tabs_icon_color_selector_colored
:
Int
static
val
mtrl_tabs_legacy_text_color_selector
:
Int
static
val
mtrl_tabs_ripple_color
:
Int
static
val
mtrl_text_btn_text_color_selector
:
Int
static
val
mtrl_textinput_default_box_stroke_color
:
Int
static
val
mtrl_textinput_disabled_color
:
Int
static
val
mtrl_textinput_filled_box_default_background_color
:
Int
static
val
mtrl_textinput_hovered_box_stroke_color
:
Int
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
notification_material_background_media_default_color
:
Int
static
val
primary_dark_material_dark
:
Int
static
val
primary_dark_material_light
:
Int
static
val
primary_material_dark
:
Int
static
val
primary_material_light
:
Int
static
val
primary_text_default_material_dark
:
Int
static
val
primary_text_default_material_light
:
Int
static
val
primary_text_disabled_material_dark
:
Int
static
val
primary_text_disabled_material_light
:
Int
static
val
ripple_material_dark
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_dark
:
Int
static
val
secondary_text_default_material_light
:
Int
static
val
secondary_text_disabled_material_dark
:
Int
static
val
secondary_text_disabled_material_light
:
Int
static
val
switch_thumb_disabled_material_dark
:
Int
static
val
switch_thumb_disabled_material_light
:
Int
static
val
switch_thumb_material_dark
:
Int
static
val
switch_thumb_material_light
:
Int
static
val
switch_thumb_normal_material_dark
:
Int
static
val
switch_thumb_normal_material_light
:
Int
static
val
tooltip_background_dark
:
Int
static
val
tooltip_background_light
:
Int
class
dimen
Module Contents
dimen
(
)
static
val
abc_action_bar_content_inset_material
:
Int
static
val
abc_action_bar_content_inset_with_nav
:
Int
static
val
abc_action_bar_default_height_material
:
Int
static
val
abc_action_bar_default_padding_end_material
:
Int
static
val
abc_action_bar_default_padding_start_material
:
Int
static
val
abc_action_bar_elevation_material
:
Int
static
val
abc_action_bar_icon_vertical_padding_material
:
Int
static
val
abc_action_bar_overflow_padding_end_material
:
Int
static
val
abc_action_bar_overflow_padding_start_material
:
Int
static
val
abc_action_bar_stacked_max_height
:
Int
static
val
abc_action_bar_stacked_tab_max_width
:
Int
static
val
abc_action_bar_subtitle_bottom_margin_material
:
Int
static
val
abc_action_bar_subtitle_top_margin_material
:
Int
static
val
abc_action_button_min_height_material
:
Int
static
val
abc_action_button_min_width_material
:
Int
static
val
abc_action_button_min_width_overflow_material
:
Int
static
val
abc_alert_dialog_button_bar_height
:
Int
static
val
abc_alert_dialog_button_dimen
:
Int
static
val
abc_button_inset_horizontal_material
:
Int
static
val
abc_button_inset_vertical_material
:
Int
static
val
abc_button_padding_horizontal_material
:
Int
static
val
abc_button_padding_vertical_material
:
Int
static
val
abc_cascading_menus_min_smallest_width
:
Int
static
val
abc_config_prefDialogWidth
:
Int
static
val
abc_control_corner_material
:
Int
static
val
abc_control_inset_material
:
Int
static
val
abc_control_padding_material
:
Int
static
val
abc_dialog_corner_radius_material
:
Int
static
val
abc_dialog_fixed_height_major
:
Int
static
val
abc_dialog_fixed_height_minor
:
Int
static
val
abc_dialog_fixed_width_major
:
Int
static
val
abc_dialog_fixed_width_minor
:
Int
static
val
abc_dialog_list_padding_bottom_no_buttons
:
Int
static
val
abc_dialog_list_padding_top_no_title
:
Int
static
val
abc_dialog_min_width_major
:
Int
static
val
abc_dialog_min_width_minor
:
Int
static
val
abc_dialog_padding_material
:
Int
static
val
abc_dialog_padding_top_material
:
Int
static
val
abc_dialog_title_divider_material
:
Int
static
val
abc_disabled_alpha_material_dark
:
Int
static
val
abc_disabled_alpha_material_light
:
Int
static
val
abc_dropdownitem_icon_width
:
Int
static
val
abc_dropdownitem_text_padding_left
:
Int
static
val
abc_dropdownitem_text_padding_right
:
Int
static
val
abc_edit_text_inset_bottom_material
:
Int
static
val
abc_edit_text_inset_horizontal_material
:
Int
static
val
abc_edit_text_inset_top_material
:
Int
static
val
abc_floating_window_z
:
Int
static
val
abc_list_item_padding_horizontal_material
:
Int
static
val
abc_panel_menu_list_width
:
Int
static
val
abc_progress_bar_height_material
:
Int
static
val
abc_search_view_preferred_height
:
Int
static
val
abc_search_view_preferred_width
:
Int
static
val
abc_seekbar_track_background_height_material
:
Int
static
val
abc_seekbar_track_progress_height_material
:
Int
static
val
abc_select_dialog_padding_start_material
:
Int
static
val
abc_switch_padding
:
Int
static
val
abc_text_size_body_1_material
:
Int
static
val
abc_text_size_body_2_material
:
Int
static
val
abc_text_size_button_material
:
Int
static
val
abc_text_size_caption_material
:
Int
static
val
abc_text_size_display_1_material
:
Int
static
val
abc_text_size_display_2_material
:
Int
static
val
abc_text_size_display_3_material
:
Int
static
val
abc_text_size_display_4_material
:
Int
static
val
abc_text_size_headline_material
:
Int
static
val
abc_text_size_large_material
:
Int
static
val
abc_text_size_medium_material
:
Int
static
val
abc_text_size_menu_header_material
:
Int
static
val
abc_text_size_menu_material
:
Int
static
val
abc_text_size_small_material
:
Int
static
val
abc_text_size_subhead_material
:
Int
static
val
abc_text_size_subtitle_material_toolbar
:
Int
static
val
abc_text_size_title_material
:
Int
static
val
abc_text_size_title_material_toolbar
:
Int
static
val
activity_horizontal_margin
:
Int
static
val
activity_vertical_margin
:
Int
static
val
cardview_compat_inset_shadow
:
Int
static
val
cardview_default_elevation
:
Int
static
val
cardview_default_radius
:
Int
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
design_appbar_elevation
:
Int
static
val
design_bottom_navigation_active_item_max_width
:
Int
static
val
design_bottom_navigation_active_item_min_width
:
Int
static
val
design_bottom_navigation_active_text_size
:
Int
static
val
design_bottom_navigation_elevation
:
Int
static
val
design_bottom_navigation_height
:
Int
static
val
design_bottom_navigation_icon_size
:
Int
static
val
design_bottom_navigation_item_max_width
:
Int
static
val
design_bottom_navigation_item_min_width
:
Int
static
val
design_bottom_navigation_margin
:
Int
static
val
design_bottom_navigation_shadow_height
:
Int
static
val
design_bottom_navigation_text_size
:
Int
static
val
design_bottom_sheet_modal_elevation
:
Int
static
val
design_bottom_sheet_peek_height_min
:
Int
static
val
design_fab_border_width
:
Int
static
val
design_fab_elevation
:
Int
static
val
design_fab_image_size
:
Int
static
val
design_fab_size_mini
:
Int
static
val
design_fab_size_normal
:
Int
static
val
design_fab_translation_z_hovered_focused
:
Int
static
val
design_fab_translation_z_pressed
:
Int
static
val
design_navigation_elevation
:
Int
static
val
design_navigation_icon_padding
:
Int
static
val
design_navigation_icon_size
:
Int
static
val
design_navigation_item_horizontal_padding
:
Int
static
val
design_navigation_item_icon_padding
:
Int
static
val
design_navigation_max_width
:
Int
static
val
design_navigation_padding_bottom
:
Int
static
val
design_navigation_separator_vertical_padding
:
Int
static
val
design_snackbar_action_inline_max_width
:
Int
static
val
design_snackbar_background_corner_radius
:
Int
static
val
design_snackbar_elevation
:
Int
static
val
design_snackbar_extra_spacing_horizontal
:
Int
static
val
design_snackbar_max_width
:
Int
static
val
design_snackbar_min_width
:
Int
static
val
design_snackbar_padding_horizontal
:
Int
static
val
design_snackbar_padding_vertical
:
Int
static
val
design_snackbar_padding_vertical_2lines
:
Int
static
val
design_snackbar_text_size
:
Int
static
val
design_tab_max_width
:
Int
static
val
design_tab_scrollable_min_width
:
Int
static
val
design_tab_text_size
:
Int
static
val
design_tab_text_size_2line
:
Int
static
val
design_textinput_caption_translate_y
:
Int
static
val
disabled_alpha_material_dark
:
Int
static
val
disabled_alpha_material_light
:
Int
static
val
fastscroll_default_thickness
:
Int
static
val
fastscroll_margin
:
Int
static
val
fastscroll_minimum_range
:
Int
static
val
highlight_alpha_material_colored
:
Int
static
val
highlight_alpha_material_dark
:
Int
static
val
highlight_alpha_material_light
:
Int
static
val
hint_alpha_material_dark
:
Int
static
val
hint_alpha_material_light
:
Int
static
val
hint_pressed_alpha_material_dark
:
Int
static
val
hint_pressed_alpha_material_light
:
Int
static
val
item_touch_helper_max_drag_scroll_per_frame
:
Int
static
val
item_touch_helper_swipe_escape_max_velocity
:
Int
static
val
item_touch_helper_swipe_escape_velocity
:
Int
static
val
mtrl_bottomappbar_fabOffsetEndMode
:
Int
static
val
mtrl_bottomappbar_fab_cradle_margin
:
Int
static
val
mtrl_bottomappbar_fab_cradle_rounded_corner_radius
:
Int
static
val
mtrl_bottomappbar_fab_cradle_vertical_offset
:
Int
static
val
mtrl_bottomappbar_height
:
Int
static
val
mtrl_btn_corner_radius
:
Int
static
val
mtrl_btn_dialog_btn_min_width
:
Int
static
val
mtrl_btn_disabled_elevation
:
Int
static
val
mtrl_btn_disabled_z
:
Int
static
val
mtrl_btn_elevation
:
Int
static
val
mtrl_btn_focused_z
:
Int
static
val
mtrl_btn_hovered_z
:
Int
static
val
mtrl_btn_icon_btn_padding_left
:
Int
static
val
mtrl_btn_icon_padding
:
Int
static
val
mtrl_btn_inset
:
Int
static
val
mtrl_btn_letter_spacing
:
Int
static
val
mtrl_btn_padding_bottom
:
Int
static
val
mtrl_btn_padding_left
:
Int
static
val
mtrl_btn_padding_right
:
Int
static
val
mtrl_btn_padding_top
:
Int
static
val
mtrl_btn_pressed_z
:
Int
static
val
mtrl_btn_stroke_size
:
Int
static
val
mtrl_btn_text_btn_icon_padding
:
Int
static
val
mtrl_btn_text_btn_padding_left
:
Int
static
val
mtrl_btn_text_btn_padding_right
:
Int
static
val
mtrl_btn_text_size
:
Int
static
val
mtrl_btn_z
:
Int
static
val
mtrl_card_elevation
:
Int
static
val
mtrl_card_spacing
:
Int
static
val
mtrl_chip_pressed_translation_z
:
Int
static
val
mtrl_chip_text_size
:
Int
static
val
mtrl_fab_elevation
:
Int
static
val
mtrl_fab_translation_z_hovered_focused
:
Int
static
val
mtrl_fab_translation_z_pressed
:
Int
static
val
mtrl_navigation_elevation
:
Int
static
val
mtrl_navigation_item_horizontal_padding
:
Int
static
val
mtrl_navigation_item_icon_padding
:
Int
static
val
mtrl_snackbar_background_corner_radius
:
Int
static
val
mtrl_snackbar_margin
:
Int
static
val
mtrl_textinput_box_bottom_offset
:
Int
static
val
mtrl_textinput_box_corner_radius_medium
:
Int
static
val
mtrl_textinput_box_corner_radius_small
:
Int
static
val
mtrl_textinput_box_label_cutout_padding
:
Int
static
val
mtrl_textinput_box_padding_end
:
Int
static
val
mtrl_textinput_box_stroke_width_default
:
Int
static
val
mtrl_textinput_box_stroke_width_focused
:
Int
static
val
mtrl_textinput_outline_box_expanded_padding
:
Int
static
val
mtrl_toolbar_default_height
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
static
val
shr_product_card_image_height
:
Int
static
val
shr_product_grid_reveal_height
:
Int
static
val
shr_product_grid_spacing
:
Int
static
val
shr_product_grid_spacing_small
:
Int
static
val
shr_staggered_product_grid_card_height_landscape
:
Int
static
val
shr_staggered_product_grid_card_height_portrait
:
Int
static
val
shr_staggered_product_grid_card_width_landscape
:
Int
static
val
shr_staggered_product_grid_card_width_portrait
:
Int
static
val
shr_staggered_product_grid_margin_top_first
:
Int
static
val
shr_staggered_product_grid_margin_top_second
:
Int
static
val
shr_staggered_product_grid_margin_top_third
:
Int
static
val
shr_staggered_product_grid_spacing_large
:
Int
static
val
shr_staggered_product_grid_spacing_small
:
Int
static
val
subtitle_corner_radius
:
Int
static
val
subtitle_outline_width
:
Int
static
val
subtitle_shadow_offset
:
Int
static
val
subtitle_shadow_radius
:
Int
static
val
tooltip_corner_radius
:
Int
static
val
tooltip_horizontal_padding
:
Int
static
val
tooltip_margin
:
Int
static
val
tooltip_precise_anchor_extra_offset
:
Int
static
val
tooltip_precise_anchor_threshold
:
Int
static
val
tooltip_vertical_padding
:
Int
static
val
tooltip_y_offset_non_touch
:
Int
static
val
tooltip_y_offset_touch
:
Int
class
drawable
Module Contents
drawable
(
)
static
val
abc_ab_share_pack_mtrl_alpha
:
Int
static
val
abc_action_bar_item_background_material
:
Int
static
val
abc_btn_borderless_material
:
Int
static
val
abc_btn_check_material
:
Int
static
val
abc_btn_check_to_on_mtrl_000
:
Int
static
val
abc_btn_check_to_on_mtrl_015
:
Int
static
val
abc_btn_colored_material
:
Int
static
val
abc_btn_default_mtrl_shape
:
Int
static
val
abc_btn_radio_material
:
Int
static
val
abc_btn_radio_to_on_mtrl_000
:
Int
static
val
abc_btn_radio_to_on_mtrl_015
:
Int
static
val
abc_btn_switch_to_on_mtrl_00001
:
Int
static
val
abc_btn_switch_to_on_mtrl_00012
:
Int
static
val
abc_cab_background_internal_bg
:
Int
static
val
abc_cab_background_top_material
:
Int
static
val
abc_cab_background_top_mtrl_alpha
:
Int
static
val
abc_control_background_material
:
Int
static
val
abc_dialog_material_background
:
Int
static
val
abc_edit_text_material
:
Int
static
val
abc_ic_ab_back_material
:
Int
static
val
abc_ic_arrow_drop_right_black_24dp
:
Int
static
val
abc_ic_clear_material
:
Int
static
val
abc_ic_commit_search_api_mtrl_alpha
:
Int
static
val
abc_ic_go_search_api_material
:
Int
static
val
abc_ic_menu_copy_mtrl_am_alpha
:
Int
static
val
abc_ic_menu_cut_mtrl_alpha
:
Int
static
val
abc_ic_menu_overflow_material
:
Int
static
val
abc_ic_menu_paste_mtrl_am_alpha
:
Int
static
val
abc_ic_menu_selectall_mtrl_alpha
:
Int
static
val
abc_ic_menu_share_mtrl_alpha
:
Int
static
val
abc_ic_search_api_material
:
Int
static
val
abc_ic_star_black_16dp
:
Int
static
val
abc_ic_star_black_36dp
:
Int
static
val
abc_ic_star_black_48dp
:
Int
static
val
abc_ic_star_half_black_16dp
:
Int
static
val
abc_ic_star_half_black_36dp
:
Int
static
val
abc_ic_star_half_black_48dp
:
Int
static
val
abc_ic_voice_search_api_material
:
Int
static
val
abc_item_background_holo_dark
:
Int
static
val
abc_item_background_holo_light
:
Int
static
val
abc_list_divider_material
:
Int
static
val
abc_list_divider_mtrl_alpha
:
Int
static
val
abc_list_focused_holo
:
Int
static
val
abc_list_longpressed_holo
:
Int
static
val
abc_list_pressed_holo_dark
:
Int
static
val
abc_list_pressed_holo_light
:
Int
static
val
abc_list_selector_background_transition_holo_dark
:
Int
static
val
abc_list_selector_background_transition_holo_light
:
Int
static
val
abc_list_selector_disabled_holo_dark
:
Int
static
val
abc_list_selector_disabled_holo_light
:
Int
static
val
abc_list_selector_holo_dark
:
Int
static
val
abc_list_selector_holo_light
:
Int
static
val
abc_menu_hardkey_panel_mtrl_mult
:
Int
static
val
abc_popup_background_mtrl_mult
:
Int
static
val
abc_ratingbar_indicator_material
:
Int
static
val
abc_ratingbar_material
:
Int
static
val
abc_ratingbar_small_material
:
Int
static
val
abc_scrubber_control_off_mtrl_alpha
:
Int
static
val
abc_scrubber_control_to_pressed_mtrl_000
:
Int
static
val
abc_scrubber_control_to_pressed_mtrl_005
:
Int
static
val
abc_scrubber_primary_mtrl_alpha
:
Int
static
val
abc_scrubber_track_mtrl_alpha
:
Int
static
val
abc_seekbar_thumb_material
:
Int
static
val
abc_seekbar_tick_mark_material
:
Int
static
val
abc_seekbar_track_material
:
Int
static
val
abc_spinner_mtrl_am_alpha
:
Int
static
val
abc_spinner_textfield_background_material
:
Int
static
val
abc_switch_thumb_material
:
Int
static
val
abc_switch_track_mtrl_alpha
:
Int
static
val
abc_tab_indicator_material
:
Int
static
val
abc_tab_indicator_mtrl_alpha
:
Int
static
val
abc_text_cursor_material
:
Int
static
val
abc_text_select_handle_left_mtrl_dark
:
Int
static
val
abc_text_select_handle_left_mtrl_light
:
Int
static
val
abc_text_select_handle_middle_mtrl_dark
:
Int
static
val
abc_text_select_handle_middle_mtrl_light
:
Int
static
val
abc_text_select_handle_right_mtrl_dark
:
Int
static
val
abc_text_select_handle_right_mtrl_light
:
Int
static
val
abc_textfield_activated_mtrl_alpha
:
Int
static
val
abc_textfield_default_mtrl_alpha
:
Int
static
val
abc_textfield_search_activated_mtrl_alpha
:
Int
static
val
abc_textfield_search_default_mtrl_alpha
:
Int
static
val
abc_textfield_search_material
:
Int
static
val
abc_vector_test
:
Int
static
val
avd_hide_password
:
Int
static
val
avd_show_password
:
Int
static
val
design_bottom_navigation_item_background
:
Int
static
val
design_fab_background
:
Int
static
val
design_ic_visibility
:
Int
static
val
design_ic_visibility_off
:
Int
static
val
design_password_eye
:
Int
static
val
design_snackbar_background
:
Int
static
val
ic_add_24dp
:
Int
static
val
ic_favorite_24dp
:
Int
static
val
ic_favorite_border_24dp
:
Int
static
val
ic_icon
:
Int
static
val
ic_launcher_background
:
Int
static
val
ic_launcher_foreground
:
Int
static
val
ic_mtrl_chip_checked_black
:
Int
static
val
ic_mtrl_chip_checked_circle
:
Int
static
val
ic_mtrl_chip_close_circle
:
Int
static
val
ic_no_internet_background
:
Int
static
val
ic_registration_background
:
Int
static
val
ic_search_24dp
:
Int
static
val
ic_star_border_16dp
:
Int
static
val
mtrl_snackbar_background
:
Int
static
val
mtrl_tabs_default_indicator
:
Int
static
val
navigation_empty_icon
:
Int
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
static
val
tooltip_frame_dark
:
Int
static
val
tooltip_frame_light
:
Int
class
id
Module Contents
id
(
)
static
val
ALT
:
Int
static
val
CTRL
:
Int
static
val
FUNCTION
:
Int
static
val
META
:
Int
static
val
SHIFT
:
Int
static
val
SYM
:
Int
static
val
account_menu
:
Int
static
val
action0
:
Int
static
val
action_bar
:
Int
static
val
action_bar_activity_content
:
Int
static
val
action_bar_container
:
Int
static
val
action_bar_root
:
Int
static
val
action_bar_spinner
:
Int
static
val
action_bar_subtitle
:
Int
static
val
action_bar_title
:
Int
static
val
action_container
:
Int
static
val
action_context_bar
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_menu_divider
:
Int
static
val
action_menu_presenter
:
Int
static
val
action_mode_bar
:
Int
static
val
action_mode_bar_stub
:
Int
static
val
action_mode_close_button
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
activity_chooser_view_content
:
Int
static
val
add
:
Int
static
val
alertTitle
:
Int
static
val
all
:
Int
static
val
always
:
Int
static
val
amount_of_likes
:
Int
static
val
amount_of_posts
:
Int
static
val
async
:
Int
static
val
author_name
:
Int
static
val
auto
:
Int
static
val
back_button
:
Int
static
val
barrier
:
Int
static
val
beginning
:
Int
static
val
blocking
:
Int
static
val
bottom
:
Int
static
val
buttonPanel
:
Int
static
val
cancel_action
:
Int
static
val
center
:
Int
static
val
center_horizontal
:
Int
static
val
center_vertical
:
Int
static
val
chains
:
Int
static
val
checkbox
:
Int
static
val
chronometer
:
Int
static
val
city_image
:
Int
static
val
city_list
:
Int
static
val
city_text
:
Int
static
val
clip_horizontal
:
Int
static
val
clip_vertical
:
Int
static
val
collapseActionView
:
Int
static
val
confirm_password_edit_text_reg
:
Int
static
val
confirm_password_text_input_reg
:
Int
static
val
confirm_registreer_button
:
Int
static
val
container
:
Int
static
val
container_add_post
:
Int
static
val
content
:
Int
static
val
contentPanel
:
Int
static
val
coordinator
:
Int
static
val
custom
:
Int
static
val
customPanel
:
Int
static
val
date_post
:
Int
static
val
decor_content_parent
:
Int
static
val
default_activity_button
:
Int
static
val
design_bottom_sheet
:
Int
static
val
design_menu_item_action_area
:
Int
static
val
design_menu_item_action_area_stub
:
Int
static
val
design_menu_item_text
:
Int
static
val
design_navigation_view
:
Int
static
val
dimensions
:
Int
static
val
direct
:
Int
static
val
disableHome
:
Int
static
val
edit_query
:
Int
static
val
end
:
Int
static
val
end_padder
:
Int
static
val
enterAlways
:
Int
static
val
enterAlwaysCollapsed
:
Int
static
val
exitUntilCollapsed
:
Int
static
val
expand_activities_button
:
Int
static
val
expanded_menu
:
Int
static
val
fill
:
Int
static
val
fill_horizontal
:
Int
static
val
fill_vertical
:
Int
static
val
filled
:
Int
static
val
fixed
:
Int
static
val
floatingActionButton
:
Int
static
val
forever
:
Int
static
val
ghost_view
:
Int
static
val
gone
:
Int
static
val
group_divider
:
Int
static
val
groups
:
Int
static
val
home
:
Int
static
val
homeAsUp
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
ifRoom
:
Int
static
val
image
:
Int
static
val
imageView
:
Int
static
val
info
:
Int
static
val
invisible
:
Int
static
val
italic
:
Int
static
val
item_touch_helper_previous_elevation
:
Int
static
val
labeled
:
Int
static
val
largeLabel
:
Int
static
val
left
:
Int
static
val
like_action_button
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
listMode
:
Int
static
val
list_item
:
Int
static
val
masked
:
Int
static
val
media_actions
:
Int
static
val
message
:
Int
static
val
middle
:
Int
static
val
mini
:
Int
static
val
mtrl_child_content_container
:
Int
static
val
mtrl_internal_children_alpha_tag
:
Int
static
val
multiply
:
Int
static
val
navigation_header_container
:
Int
static
val
never
:
Int
static
val
next_button
:
Int
static
val
none
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
outline
:
Int
static
val
packed
:
Int
static
val
parallax
:
Int
static
val
parent
:
Int
static
val
parentPanel
:
Int
static
val
parent_matrix
:
Int
static
val
password_edit_text
:
Int
static
val
password_edit_text_reg
:
Int
static
val
password_text_input
:
Int
static
val
password_text_input_reg
:
Int
static
val
percent
:
Int
static
val
pin
:
Int
static
val
post_body
:
Int
static
val
post_body_edit_text
:
Int
static
val
post_body_text_input
:
Int
static
val
post_button
:
Int
static
val
post_title_edit_text
:
Int
static
val
post_title_text_input
:
Int
static
val
progress_circular
:
Int
static
val
progress_horizontal
:
Int
static
val
radio
:
Int
static
val
recycleView
:
Int
static
val
recycler_view
:
Int
static
val
recycler_view_posts
:
Int
static
val
registreer_button
:
Int
static
val
right
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
save_image_matrix
:
Int
static
val
save_non_transition_alpha
:
Int
static
val
save_scale_type
:
Int
static
val
screen
:
Int
static
val
scroll
:
Int
static
val
scrollIndicatorDown
:
Int
static
val
scrollIndicatorUp
:
Int
static
val
scrollView
:
Int
static
val
scrollable
:
Int
static
val
search_badge
:
Int
static
val
search_bar
:
Int
static
val
search_button
:
Int
static
val
search_close_btn
:
Int
static
val
search_edit_frame
:
Int
static
val
search_go_btn
:
Int
static
val
search_mag_icon
:
Int
static
val
search_menu
:
Int
static
val
search_plate
:
Int
static
val
search_src_text
:
Int
static
val
search_voice_btn
:
Int
static
val
select_dialog_listview
:
Int
static
val
selected
:
Int
static
val
shortcut
:
Int
static
val
showCustom
:
Int
static
val
showHome
:
Int
static
val
showTitle
:
Int
static
val
smallLabel
:
Int
static
val
snackbar_action
:
Int
static
val
snackbar_text
:
Int
static
val
snap
:
Int
static
val
snapMargins
:
Int
static
val
spacer
:
Int
static
val
spinner_pinboards
:
Int
static
val
split_action_bar
:
Int
static
val
spread
:
Int
static
val
spread_inside
:
Int
static
val
src_atop
:
Int
static
val
src_in
:
Int
static
val
src_over
:
Int
static
val
standard
:
Int
static
val
start
:
Int
static
val
status_bar_latest_event_content
:
Int
static
val
stretch
:
Int
static
val
submenuarrow
:
Int
static
val
submit_area
:
Int
static
val
tabMode
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
textSpacerNoButtons
:
Int
static
val
textSpacerNoTitle
:
Int
static
val
textStart
:
Int
static
val
textView2
:
Int
static
val
text_input_password_toggle
:
Int
static
val
textinput_counter
:
Int
static
val
textinput_error
:
Int
static
val
textinput_helper_text
:
Int
static
val
time
:
Int
static
val
title
:
Int
static
val
titleDividerNoCustom
:
Int
static
val
title_post
:
Int
static
val
title_template
:
Int
static
val
top
:
Int
static
val
topPanel
:
Int
static
val
touch_outside
:
Int
static
val
transition_current_scene
:
Int
static
val
transition_layout_save
:
Int
static
val
transition_position
:
Int
static
val
transition_scene_layoutid_cache
:
Int
static
val
transition_transform
:
Int
static
val
uniform
:
Int
static
val
unlabeled
:
Int
static
val
up
:
Int
static
val
useLogo
:
Int
static
val
username_edit_text
:
Int
static
val
username_edit_text_reg
:
Int
static
val
username_text_input
:
Int
static
val
username_text_input_reg
:
Int
static
val
view_offset_helper
:
Int
static
val
visible
:
Int
static
val
withText
:
Int
static
val
wrap
:
Int
static
val
wrap_content
:
Int
class
integer
Module Contents
integer
(
)
static
val
abc_config_activityDefaultDur
:
Int
static
val
abc_config_activityShortDur
:
Int
static
val
app_bar_elevation_anim_duration
:
Int
static
val
bottom_sheet_slide_duration
:
Int
static
val
cancel_button_image_alpha
:
Int
static
val
config_tooltipAnimTime
:
Int
static
val
design_snackbar_text_max_lines
:
Int
static
val
design_tab_indicator_anim_duration_ms
:
Int
static
val
hide_password_duration
:
Int
static
val
mtrl_btn_anim_delay_ms
:
Int
static
val
mtrl_btn_anim_duration_ms
:
Int
static
val
mtrl_chip_anim_duration
:
Int
static
val
mtrl_tab_indicator_anim_duration_ms
:
Int
static
val
show_password_duration
:
Int
static
val
status_bar_notification_info_maxnum
:
Int
class
interpolator
Module Contents
interpolator
(
)
static
val
mtrl_fast_out_linear_in
:
Int
static
val
mtrl_fast_out_slow_in
:
Int
static
val
mtrl_linear
:
Int
static
val
mtrl_linear_out_slow_in
:
Int
class
layout
Module Contents
layout
(
)
static
val
abc_action_bar_title_item
:
Int
static
val
abc_action_bar_up_container
:
Int
static
val
abc_action_menu_item_layout
:
Int
static
val
abc_action_menu_layout
:
Int
static
val
abc_action_mode_bar
:
Int
static
val
abc_action_mode_close_item_material
:
Int
static
val
abc_activity_chooser_view
:
Int
static
val
abc_activity_chooser_view_list_item
:
Int
static
val
abc_alert_dialog_button_bar_material
:
Int
static
val
abc_alert_dialog_material
:
Int
static
val
abc_alert_dialog_title_material
:
Int
static
val
abc_cascading_menu_item_layout
:
Int
static
val
abc_dialog_title_material
:
Int
static
val
abc_expanded_menu_layout
:
Int
static
val
abc_list_menu_item_checkbox
:
Int
static
val
abc_list_menu_item_icon
:
Int
static
val
abc_list_menu_item_layout
:
Int
static
val
abc_list_menu_item_radio
:
Int
static
val
abc_popup_menu_header_item_layout
:
Int
static
val
abc_popup_menu_item_layout
:
Int
static
val
abc_screen_content_include
:
Int
static
val
abc_screen_simple
:
Int
static
val
abc_screen_simple_overlay_action_mode
:
Int
static
val
abc_screen_toolbar
:
Int
static
val
abc_search_dropdown_item_icons_2line
:
Int
static
val
abc_search_view
:
Int
static
val
abc_select_dialog_material
:
Int
static
val
abc_tooltip
:
Int
static
val
account_fragment
:
Int
static
val
activity_main
:
Int
static
val
activity_pinboard_details
:
Int
static
val
activity_pinboards
:
Int
static
val
add_post_fragment
:
Int
static
val
design_bottom_navigation_item
:
Int
static
val
design_bottom_sheet_dialog
:
Int
static
val
design_layout_snackbar
:
Int
static
val
design_layout_snackbar_include
:
Int
static
val
design_layout_tab_icon
:
Int
static
val
design_layout_tab_text
:
Int
static
val
design_menu_item_action_area
:
Int
static
val
design_navigation_item
:
Int
static
val
design_navigation_item_header
:
Int
static
val
design_navigation_item_separator
:
Int
static
val
design_navigation_item_subheader
:
Int
static
val
design_navigation_menu
:
Int
static
val
design_navigation_menu_item
:
Int
static
val
design_text_input_password_icon
:
Int
static
val
geen_internet_fragment
:
Int
static
val
login_fragment
:
Int
static
val
mtrl_layout_snackbar
:
Int
static
val
mtrl_layout_snackbar_include
:
Int
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_media_action
:
Int
static
val
notification_media_cancel_action
:
Int
static
val
notification_template_big_media
:
Int
static
val
notification_template_big_media_custom
:
Int
static
val
notification_template_big_media_narrow
:
Int
static
val
notification_template_big_media_narrow_custom
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_lines_media
:
Int
static
val
notification_template_media
:
Int
static
val
notification_template_media_custom
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
static
val
pinboard_item
:
Int
static
val
pinboard_list_fragment
:
Int
static
val
post_item
:
Int
static
val
registreer_fragment
:
Int
static
val
select_dialog_item_material
:
Int
static
val
select_dialog_multichoice_material
:
Int
static
val
select_dialog_singlechoice_material
:
Int
static
val
support_simple_spinner_dropdown_item
:
Int
class
menu
Module Contents
menu
(
)
static
val
search_menu
:
Int
class
mipmap
Module Contents
mipmap
(
)
static
val
ic_launcher
:
Int
static
val
ic_launcher_foreground
:
Int
static
val
ic_launcher_round
:
Int
class
string
Module Contents
string
(
)
static
val
abc_action_bar_home_description
:
Int
static
val
abc_action_bar_up_description
:
Int
static
val
abc_action_menu_overflow_description
:
Int
static
val
abc_action_mode_done
:
Int
static
val
abc_activity_chooser_view_see_all
:
Int
static
val
abc_activitychooserview_choose_application
:
Int
static
val
abc_capital_off
:
Int
static
val
abc_capital_on
:
Int
static
val
abc_font_family_body_1_material
:
Int
static
val
abc_font_family_body_2_material
:
Int
static
val
abc_font_family_button_material
:
Int
static
val
abc_font_family_caption_material
:
Int
static
val
abc_font_family_display_1_material
:
Int
static
val
abc_font_family_display_2_material
:
Int
static
val
abc_font_family_display_3_material
:
Int
static
val
abc_font_family_display_4_material
:
Int
static
val
abc_font_family_headline_material
:
Int
static
val
abc_font_family_menu_material
:
Int
static
val
abc_font_family_subhead_material
:
Int
static
val
abc_font_family_title_material
:
Int
static
val
abc_menu_alt_shortcut_label
:
Int
static
val
abc_menu_ctrl_shortcut_label
:
Int
static
val
abc_menu_delete_shortcut_label
:
Int
static
val
abc_menu_enter_shortcut_label
:
Int
static
val
abc_menu_function_shortcut_label
:
Int
static
val
abc_menu_meta_shortcut_label
:
Int
static
val
abc_menu_shift_shortcut_label
:
Int
static
val
abc_menu_space_shortcut_label
:
Int
static
val
abc_menu_sym_shortcut_label
:
Int
static
val
abc_prepend_shortcut_label
:
Int
static
val
abc_search_hint
:
Int
static
val
abc_searchview_description_clear
:
Int
static
val
abc_searchview_description_query
:
Int
static
val
abc_searchview_description_search
:
Int
static
val
abc_searchview_description_submit
:
Int
static
val
abc_searchview_description_voice
:
Int
static
val
abc_shareactionprovider_share_with
:
Int
static
val
abc_shareactionprovider_share_with_application
:
Int
static
val
abc_toolbar_collapse_description
:
Int
static
val
add_post_title
:
Int
static
val
app_name
:
Int
static
val
appbar_scrolling_view_behavior
:
Int
static
val
back_button
:
Int
static
val
bottom_sheet_behavior
:
Int
static
val
character_counter_content_description
:
Int
static
val
character_counter_pattern
:
Int
static
val
error_confirm_password
:
Int
static
val
error_password
:
Int
static
val
error_post_field_empty
:
Int
static
val
error_useralreadyexists
:
Int
static
val
error_username
:
Int
static
val
error_wrong_user_or_password
:
Int
static
val
fab_transformation_scrim_behavior
:
Int
static
val
fab_transformation_sheet_behavior
:
Int
static
val
hide_bottom_view_on_scroll_behavior
:
Int
static
val
hint_confirm_password
:
Int
static
val
hint_password
:
Int
static
val
hint_post_body
:
Int
static
val
hint_post_title
:
Int
static
val
hint_search
:
Int
static
val
hint_username
:
Int
static
val
key_pinboard
:
Int
static
val
mtrl_chip_close_icon_content_description
:
Int
static
val
next_button
:
Int
static
val
no_internet_connection
:
Int
static
val
no_internet_connection_description
:
Int
static
val
no_internet_connection_solution
:
Int
static
val
password_toggle_content_description
:
Int
static
val
path_password_eye
:
Int
static
val
path_password_eye_mask_strike_through
:
Int
static
val
path_password_eye_mask_visible
:
Int
static
val
path_password_strike_through
:
Int
static
val
pinboard_card_amount_of_posts
:
Int
static
val
pinboard_details_title
:
Int
static
val
post_button
:
Int
static
val
register_button
:
Int
static
val
registration_background_description
:
Int
static
val
search_menu_title
:
Int
static
val
something_went_wrong
:
Int
static
val
sp_token_key
:
Int
static
val
sp_token_likedPosts
:
Int
static
val
sp_token_password
:
Int
static
val
sp_token_username
:
Int
static
val
status_bar_notification_info_overflow
:
Int
static
val
you_are_offline
:
Int
class
style
Module Contents
style
(
)
static
val
AlertDialog_AppCompat
:
Int
static
val
AlertDialog_AppCompat_Light
:
Int
static
val
Animation_AppCompat_Dialog
:
Int
static
val
Animation_AppCompat_DropDownUp
:
Int
static
val
Animation_AppCompat_Tooltip
:
Int
static
val
Animation_Design_BottomSheetDialog
:
Int
static
val
Base_AlertDialog_AppCompat
:
Int
static
val
Base_AlertDialog_AppCompat_Light
:
Int
static
val
Base_Animation_AppCompat_Dialog
:
Int
static
val
Base_Animation_AppCompat_DropDownUp
:
Int
static
val
Base_Animation_AppCompat_Tooltip
:
Int
static
val
Base_CardView
:
Int
static
val
Base_DialogWindowTitleBackground_AppCompat
:
Int
static
val
Base_DialogWindowTitle_AppCompat
:
Int
static
val
Base_TextAppearance_AppCompat
:
Int
static
val
Base_TextAppearance_AppCompat_Body1
:
Int
static
val
Base_TextAppearance_AppCompat_Body2
:
Int
static
val
Base_TextAppearance_AppCompat_Button
:
Int
static
val
Base_TextAppearance_AppCompat_Caption
:
Int
static
val
Base_TextAppearance_AppCompat_Display1
:
Int
static
val
Base_TextAppearance_AppCompat_Display2
:
Int
static
val
Base_TextAppearance_AppCompat_Display3
:
Int
static
val
Base_TextAppearance_AppCompat_Display4
:
Int
static
val
Base_TextAppearance_AppCompat_Headline
:
Int
static
val
Base_TextAppearance_AppCompat_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Large
:
Int
static
val
Base_TextAppearance_AppCompat_Large_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
:
Int
static
val
Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
:
Int
static
val
Base_TextAppearance_AppCompat_Medium
:
Int
static
val
Base_TextAppearance_AppCompat_Medium_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Menu
:
Int
static
val
Base_TextAppearance_AppCompat_SearchResult
:
Int
static
val
Base_TextAppearance_AppCompat_SearchResult_Subtitle
:
Int
static
val
Base_TextAppearance_AppCompat_SearchResult_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Small
:
Int
static
val
Base_TextAppearance_AppCompat_Small_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Subhead
:
Int
static
val
Base_TextAppearance_AppCompat_Subhead_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Title_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Tooltip
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Menu
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionMode_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button_Colored
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_DropDownItem
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_PopupMenu_Header
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_PopupMenu_Large
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_PopupMenu_Small
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Switch
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem
:
Int
static
val
Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item
:
Int
static
val
Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle
:
Int
static
val
Base_TextAppearance_Widget_AppCompat_Toolbar_Title
:
Int
static
val
Base_ThemeOverlay_AppCompat
:
Int
static
val
Base_ThemeOverlay_AppCompat_ActionBar
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dark
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dark_ActionBar
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dialog
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dialog_Alert
:
Int
static
val
Base_ThemeOverlay_AppCompat_Light
:
Int
static
val
Base_ThemeOverlay_MaterialComponents_Dialog
:
Int
static
val
Base_ThemeOverlay_MaterialComponents_Dialog_Alert
:
Int
static
val
Base_Theme_AppCompat
:
Int
static
val
Base_Theme_AppCompat_CompactMenu
:
Int
static
val
Base_Theme_AppCompat_Dialog
:
Int
static
val
Base_Theme_AppCompat_DialogWhenLarge
:
Int
static
val
Base_Theme_AppCompat_Dialog_Alert
:
Int
static
val
Base_Theme_AppCompat_Dialog_FixedSize
:
Int
static
val
Base_Theme_AppCompat_Dialog_MinWidth
:
Int
static
val
Base_Theme_AppCompat_Light
:
Int
static
val
Base_Theme_AppCompat_Light_DarkActionBar
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog
:
Int
static
val
Base_Theme_AppCompat_Light_DialogWhenLarge
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog_Alert
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog_FixedSize
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog_MinWidth
:
Int
static
val
Base_Theme_MaterialComponents
:
Int
static
val
Base_Theme_MaterialComponents_Bridge
:
Int
static
val
Base_Theme_MaterialComponents_CompactMenu
:
Int
static
val
Base_Theme_MaterialComponents_Dialog
:
Int
static
val
Base_Theme_MaterialComponents_DialogWhenLarge
:
Int
static
val
Base_Theme_MaterialComponents_Dialog_Alert
:
Int
static
val
Base_Theme_MaterialComponents_Dialog_FixedSize
:
Int
static
val
Base_Theme_MaterialComponents_Dialog_MinWidth
:
Int
static
val
Base_Theme_MaterialComponents_Light
:
Int
static
val
Base_Theme_MaterialComponents_Light_Bridge
:
Int
static
val
Base_Theme_MaterialComponents_Light_DarkActionBar
:
Int
static
val
Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge
:
Int
static
val
Base_Theme_MaterialComponents_Light_Dialog
:
Int
static
val
Base_Theme_MaterialComponents_Light_DialogWhenLarge
:
Int
static
val
Base_Theme_MaterialComponents_Light_Dialog_Alert
:
Int
static
val
Base_Theme_MaterialComponents_Light_Dialog_FixedSize
:
Int
static
val
Base_Theme_MaterialComponents_Light_Dialog_MinWidth
:
Int
static
val
Base_V14_ThemeOverlay_MaterialComponents_Dialog
:
Int
static
val
Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert
:
Int
static
val
Base_V14_Theme_MaterialComponents
:
Int
static
val
Base_V14_Theme_MaterialComponents_Bridge
:
Int
static
val
Base_V14_Theme_MaterialComponents_Dialog
:
Int
static
val
Base_V14_Theme_MaterialComponents_Light
:
Int
static
val
Base_V14_Theme_MaterialComponents_Light_Bridge
:
Int
static
val
Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge
:
Int
static
val
Base_V14_Theme_MaterialComponents_Light_Dialog
:
Int
static
val
Base_V21_ThemeOverlay_AppCompat_Dialog
:
Int
static
val
Base_V21_Theme_AppCompat
:
Int
static
val
Base_V21_Theme_AppCompat_Dialog
:
Int
static
val
Base_V21_Theme_AppCompat_Light
:
Int
static
val
Base_V21_Theme_AppCompat_Light_Dialog
:
Int
static
val
Base_V22_Theme_AppCompat
:
Int
static
val
Base_V22_Theme_AppCompat_Light
:
Int
static
val
Base_V23_Theme_AppCompat
:
Int
static
val
Base_V23_Theme_AppCompat_Light
:
Int
static
val
Base_V26_Theme_AppCompat
:
Int
static
val
Base_V26_Theme_AppCompat_Light
:
Int
static
val
Base_V26_Widget_AppCompat_Toolbar
:
Int
static
val
Base_V28_Theme_AppCompat
:
Int
static
val
Base_V28_Theme_AppCompat_Light
:
Int
static
val
Base_V7_ThemeOverlay_AppCompat_Dialog
:
Int
static
val
Base_V7_Theme_AppCompat
:
Int
static
val
Base_V7_Theme_AppCompat_Dialog
:
Int
static
val
Base_V7_Theme_AppCompat_Light
:
Int
static
val
Base_V7_Theme_AppCompat_Light_Dialog
:
Int
static
val
Base_V7_Widget_AppCompat_AutoCompleteTextView
:
Int
static
val
Base_V7_Widget_AppCompat_EditText
:
Int
static
val
Base_V7_Widget_AppCompat_Toolbar
:
Int
static
val
Base_Widget_AppCompat_ActionBar
:
Int
static
val
Base_Widget_AppCompat_ActionBar_Solid
:
Int
static
val
Base_Widget_AppCompat_ActionBar_TabBar
:
Int
static
val
Base_Widget_AppCompat_ActionBar_TabText
:
Int
static
val
Base_Widget_AppCompat_ActionBar_TabView
:
Int
static
val
Base_Widget_AppCompat_ActionButton
:
Int
static
val
Base_Widget_AppCompat_ActionButton_CloseMode
:
Int
static
val
Base_Widget_AppCompat_ActionButton_Overflow
:
Int
static
val
Base_Widget_AppCompat_ActionMode
:
Int
static
val
Base_Widget_AppCompat_ActivityChooserView
:
Int
static
val
Base_Widget_AppCompat_AutoCompleteTextView
:
Int
static
val
Base_Widget_AppCompat_Button
:
Int
static
val
Base_Widget_AppCompat_ButtonBar
:
Int
static
val
Base_Widget_AppCompat_ButtonBar_AlertDialog
:
Int
static
val
Base_Widget_AppCompat_Button_Borderless
:
Int
static
val
Base_Widget_AppCompat_Button_Borderless_Colored
:
Int
static
val
Base_Widget_AppCompat_Button_ButtonBar_AlertDialog
:
Int
static
val
Base_Widget_AppCompat_Button_Colored
:
Int
static
val
Base_Widget_AppCompat_Button_Small
:
Int
static
val
Base_Widget_AppCompat_CompoundButton_CheckBox
:
Int
static
val
Base_Widget_AppCompat_CompoundButton_RadioButton
:
Int
static
val
Base_Widget_AppCompat_CompoundButton_Switch
:
Int
static
val
Base_Widget_AppCompat_DrawerArrowToggle
:
Int
static
val
Base_Widget_AppCompat_DrawerArrowToggle_Common
:
Int
static
val
Base_Widget_AppCompat_DropDownItem_Spinner
:
Int
static
val
Base_Widget_AppCompat_EditText
:
Int
static
val
Base_Widget_AppCompat_ImageButton
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_Solid
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabBar
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabText
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabView
:
Int
static
val
Base_Widget_AppCompat_Light_PopupMenu
:
Int
static
val
Base_Widget_AppCompat_Light_PopupMenu_Overflow
:
Int
static
val
Base_Widget_AppCompat_ListMenuView
:
Int
static
val
Base_Widget_AppCompat_ListPopupWindow
:
Int
static
val
Base_Widget_AppCompat_ListView
:
Int
static
val
Base_Widget_AppCompat_ListView_DropDown
:
Int
static
val
Base_Widget_AppCompat_ListView_Menu
:
Int
static
val
Base_Widget_AppCompat_PopupMenu
:
Int
static
val
Base_Widget_AppCompat_PopupMenu_Overflow
:
Int
static
val
Base_Widget_AppCompat_PopupWindow
:
Int
static
val
Base_Widget_AppCompat_ProgressBar
:
Int
static
val
Base_Widget_AppCompat_ProgressBar_Horizontal
:
Int
static
val
Base_Widget_AppCompat_RatingBar
:
Int
static
val
Base_Widget_AppCompat_RatingBar_Indicator
:
Int
static
val
Base_Widget_AppCompat_RatingBar_Small
:
Int
static
val
Base_Widget_AppCompat_SearchView
:
Int
static
val
Base_Widget_AppCompat_SearchView_ActionBar
:
Int
static
val
Base_Widget_AppCompat_SeekBar
:
Int
static
val
Base_Widget_AppCompat_SeekBar_Discrete
:
Int
static
val
Base_Widget_AppCompat_Spinner
:
Int
static
val
Base_Widget_AppCompat_Spinner_Underlined
:
Int
static
val
Base_Widget_AppCompat_TextView_SpinnerItem
:
Int
static
val
Base_Widget_AppCompat_Toolbar
:
Int
static
val
Base_Widget_AppCompat_Toolbar_Button_Navigation
:
Int
static
val
Base_Widget_Design_TabLayout
:
Int
static
val
Base_Widget_MaterialComponents_Chip
:
Int
static
val
Base_Widget_MaterialComponents_TextInputEditText
:
Int
static
val
Base_Widget_MaterialComponents_TextInputLayout
:
Int
static
val
CardView
:
Int
static
val
CardView_Dark
:
Int
static
val
CardView_Light
:
Int
static
val
Platform_AppCompat
:
Int
static
val
Platform_AppCompat_Light
:
Int
static
val
Platform_MaterialComponents
:
Int
static
val
Platform_MaterialComponents_Dialog
:
Int
static
val
Platform_MaterialComponents_Light
:
Int
static
val
Platform_MaterialComponents_Light_Dialog
:
Int
static
val
Platform_ThemeOverlay_AppCompat
:
Int
static
val
Platform_ThemeOverlay_AppCompat_Dark
:
Int
static
val
Platform_ThemeOverlay_AppCompat_Light
:
Int
static
val
Platform_V21_AppCompat
:
Int
static
val
Platform_V21_AppCompat_Light
:
Int
static
val
Platform_V25_AppCompat
:
Int
static
val
Platform_V25_AppCompat_Light
:
Int
static
val
Platform_Widget_AppCompat_Spinner
:
Int
static
val
RtlOverlay_DialogWindowTitle_AppCompat
:
Int
static
val
RtlOverlay_Widget_AppCompat_ActionBar_TitleItem
:
Int
static
val
RtlOverlay_Widget_AppCompat_DialogTitle_Icon
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_Text
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_Title
:
Int
static
val
RtlOverlay_Widget_AppCompat_SearchView_MagIcon
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Query
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Text
:
Int
static
val
RtlUnderlay_Widget_AppCompat_ActionButton
:
Int
static
val
RtlUnderlay_Widget_AppCompat_ActionButton_Overflow
:
Int
static
val
TextAppearance_AppCompat
:
Int
static
val
TextAppearance_AppCompat_Body1
:
Int
static
val
TextAppearance_AppCompat_Body2
:
Int
static
val
TextAppearance_AppCompat_Button
:
Int
static
val
TextAppearance_AppCompat_Caption
:
Int
static
val
TextAppearance_AppCompat_Display1
:
Int
static
val
TextAppearance_AppCompat_Display2
:
Int
static
val
TextAppearance_AppCompat_Display3
:
Int
static
val
TextAppearance_AppCompat_Display4
:
Int
static
val
TextAppearance_AppCompat_Headline
:
Int
static
val
TextAppearance_AppCompat_Inverse
:
Int
static
val
TextAppearance_AppCompat_Large
:
Int
static
val
TextAppearance_AppCompat_Large_Inverse
:
Int
static
val
TextAppearance_AppCompat_Light_SearchResult_Subtitle
:
Int
static
val
TextAppearance_AppCompat_Light_SearchResult_Title
:
Int
static
val
TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
:
Int
static
val
TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
:
Int
static
val
TextAppearance_AppCompat_Medium
:
Int
static
val
TextAppearance_AppCompat_Medium_Inverse
:
Int
static
val
TextAppearance_AppCompat_Menu
:
Int
static
val
TextAppearance_AppCompat_SearchResult_Subtitle
:
Int
static
val
TextAppearance_AppCompat_SearchResult_Title
:
Int
static
val
TextAppearance_AppCompat_Small
:
Int
static
val
TextAppearance_AppCompat_Small_Inverse
:
Int
static
val
TextAppearance_AppCompat_Subhead
:
Int
static
val
TextAppearance_AppCompat_Subhead_Inverse
:
Int
static
val
TextAppearance_AppCompat_Title
:
Int
static
val
TextAppearance_AppCompat_Title_Inverse
:
Int
static
val
TextAppearance_AppCompat_Tooltip
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Menu
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Subtitle
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Title
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Subtitle
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Title
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_Button
:
Int
static
val
TextAppearance_AppCompat_Widget_Button_Borderless_Colored
:
Int
static
val
TextAppearance_AppCompat_Widget_Button_Colored
:
Int
static
val
TextAppearance_AppCompat_Widget_Button_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_DropDownItem
:
Int
static
val
TextAppearance_AppCompat_Widget_PopupMenu_Header
:
Int
static
val
TextAppearance_AppCompat_Widget_PopupMenu_Large
:
Int
static
val
TextAppearance_AppCompat_Widget_PopupMenu_Small
:
Int
static
val
TextAppearance_AppCompat_Widget_Switch
:
Int
static
val
TextAppearance_AppCompat_Widget_TextView_SpinnerItem
:
Int
static
val
TextAppearance_CityPinboard_Title
:
Int
static
val
TextAppearance_CityPinboard_Toolbar
:
Int
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Info_Media
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Line2_Media
:
Int
static
val
TextAppearance_Compat_Notification_Media
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Time_Media
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
TextAppearance_Compat_Notification_Title_Media
:
Int
static
val
TextAppearance_Design_CollapsingToolbar_Expanded
:
Int
static
val
TextAppearance_Design_Counter
:
Int
static
val
TextAppearance_Design_Counter_Overflow
:
Int
static
val
TextAppearance_Design_Error
:
Int
static
val
TextAppearance_Design_HelperText
:
Int
static
val
TextAppearance_Design_Hint
:
Int
static
val
TextAppearance_Design_Snackbar_Message
:
Int
static
val
TextAppearance_Design_Tab
:
Int
static
val
TextAppearance_MaterialComponents_Body1
:
Int
static
val
TextAppearance_MaterialComponents_Body2
:
Int
static
val
TextAppearance_MaterialComponents_Button
:
Int
static
val
TextAppearance_MaterialComponents_Caption
:
Int
static
val
TextAppearance_MaterialComponents_Chip
:
Int
static
val
TextAppearance_MaterialComponents_Headline1
:
Int
static
val
TextAppearance_MaterialComponents_Headline2
:
Int
static
val
TextAppearance_MaterialComponents_Headline3
:
Int
static
val
TextAppearance_MaterialComponents_Headline4
:
Int
static
val
TextAppearance_MaterialComponents_Headline5
:
Int
static
val
TextAppearance_MaterialComponents_Headline6
:
Int
static
val
TextAppearance_MaterialComponents_Overline
:
Int
static
val
TextAppearance_MaterialComponents_Subtitle1
:
Int
static
val
TextAppearance_MaterialComponents_Subtitle2
:
Int
static
val
TextAppearance_MaterialComponents_Tab
:
Int
static
val
TextAppearance_Widget_AppCompat_ExpandedMenu_Item
:
Int
static
val
TextAppearance_Widget_AppCompat_Toolbar_Subtitle
:
Int
static
val
TextAppearance_Widget_AppCompat_Toolbar_Title
:
Int
static
val
ThemeOverlay_AppCompat
:
Int
static
val
ThemeOverlay_AppCompat_ActionBar
:
Int
static
val
ThemeOverlay_AppCompat_Dark
:
Int
static
val
ThemeOverlay_AppCompat_Dark_ActionBar
:
Int
static
val
ThemeOverlay_AppCompat_Dialog
:
Int
static
val
ThemeOverlay_AppCompat_Dialog_Alert
:
Int
static
val
ThemeOverlay_AppCompat_Light
:
Int
static
val
ThemeOverlay_MaterialComponents
:
Int
static
val
ThemeOverlay_MaterialComponents_ActionBar
:
Int
static
val
ThemeOverlay_MaterialComponents_Dark
:
Int
static
val
ThemeOverlay_MaterialComponents_Dark_ActionBar
:
Int
static
val
ThemeOverlay_MaterialComponents_Dialog
:
Int
static
val
ThemeOverlay_MaterialComponents_Dialog_Alert
:
Int
static
val
ThemeOverlay_MaterialComponents_Light
:
Int
static
val
ThemeOverlay_MaterialComponents_TextInputEditText
:
Int
static
val
ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox
:
Int
static
val
ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense
:
Int
static
val
ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox
:
Int
static
val
ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense
:
Int
static
val
Theme_AppCompat
:
Int
static
val
Theme_AppCompat_CompactMenu
:
Int
static
val
Theme_AppCompat_DayNight
:
Int
static
val
Theme_AppCompat_DayNight_DarkActionBar
:
Int
static
val
Theme_AppCompat_DayNight_Dialog
:
Int
static
val
Theme_AppCompat_DayNight_DialogWhenLarge
:
Int
static
val
Theme_AppCompat_DayNight_Dialog_Alert
:
Int
static
val
Theme_AppCompat_DayNight_Dialog_MinWidth
:
Int
static
val
Theme_AppCompat_DayNight_NoActionBar
:
Int
static
val
Theme_AppCompat_Dialog
:
Int
static
val
Theme_AppCompat_DialogWhenLarge
:
Int
static
val
Theme_AppCompat_Dialog_Alert
:
Int
static
val
Theme_AppCompat_Dialog_MinWidth
:
Int
static
val
Theme_AppCompat_Light
:
Int
static
val
Theme_AppCompat_Light_DarkActionBar
:
Int
static
val
Theme_AppCompat_Light_Dialog
:
Int
static
val
Theme_AppCompat_Light_DialogWhenLarge
:
Int
static
val
Theme_AppCompat_Light_Dialog_Alert
:
Int
static
val
Theme_AppCompat_Light_Dialog_MinWidth
:
Int
static
val
Theme_AppCompat_Light_NoActionBar
:
Int
static
val
Theme_AppCompat_NoActionBar
:
Int
static
val
Theme_CityPinboard
:
Int
static
val
Theme_CityPinboard_NoActionBar
:
Int
static
val
Theme_Design
:
Int
static
val
Theme_Design_BottomSheetDialog
:
Int
static
val
Theme_Design_Light
:
Int
static
val
Theme_Design_Light_BottomSheetDialog
:
Int
static
val
Theme_Design_Light_NoActionBar
:
Int
static
val
Theme_Design_NoActionBar
:
Int
static
val
Theme_MaterialComponents
:
Int
static
val
Theme_MaterialComponents_BottomSheetDialog
:
Int
static
val
Theme_MaterialComponents_Bridge
:
Int
static
val
Theme_MaterialComponents_CompactMenu
:
Int
static
val
Theme_MaterialComponents_Dialog
:
Int
static
val
Theme_MaterialComponents_DialogWhenLarge
:
Int
static
val
Theme_MaterialComponents_Dialog_Alert
:
Int
static
val
Theme_MaterialComponents_Dialog_MinWidth
:
Int
static
val
Theme_MaterialComponents_Light
:
Int
static
val
Theme_MaterialComponents_Light_BottomSheetDialog
:
Int
static
val
Theme_MaterialComponents_Light_Bridge
:
Int
static
val
Theme_MaterialComponents_Light_DarkActionBar
:
Int
static
val
Theme_MaterialComponents_Light_DarkActionBar_Bridge
:
Int
static
val
Theme_MaterialComponents_Light_Dialog
:
Int
static
val
Theme_MaterialComponents_Light_DialogWhenLarge
:
Int
static
val
Theme_MaterialComponents_Light_Dialog_Alert
:
Int
static
val
Theme_MaterialComponents_Light_Dialog_MinWidth
:
Int
static
val
Theme_MaterialComponents_Light_NoActionBar
:
Int
static
val
Theme_MaterialComponents_Light_NoActionBar_Bridge
:
Int
static
val
Theme_MaterialComponents_NoActionBar
:
Int
static
val
Theme_MaterialComponents_NoActionBar_Bridge
:
Int
static
val
Theme_Widget_CityPinboard_Toolbar
:
Int
static
val
Widget_AppCompat_ActionBar
:
Int
static
val
Widget_AppCompat_ActionBar_Solid
:
Int
static
val
Widget_AppCompat_ActionBar_TabBar
:
Int
static
val
Widget_AppCompat_ActionBar_TabText
:
Int
static
val
Widget_AppCompat_ActionBar_TabView
:
Int
static
val
Widget_AppCompat_ActionButton
:
Int
static
val
Widget_AppCompat_ActionButton_CloseMode
:
Int
static
val
Widget_AppCompat_ActionButton_Overflow
:
Int
static
val
Widget_AppCompat_ActionMode
:
Int
static
val
Widget_AppCompat_ActivityChooserView
:
Int
static
val
Widget_AppCompat_AutoCompleteTextView
:
Int
static
val
Widget_AppCompat_Button
:
Int
static
val
Widget_AppCompat_ButtonBar
:
Int
static
val
Widget_AppCompat_ButtonBar_AlertDialog
:
Int
static
val
Widget_AppCompat_Button_Borderless
:
Int
static
val
Widget_AppCompat_Button_Borderless_Colored
:
Int
static
val
Widget_AppCompat_Button_ButtonBar_AlertDialog
:
Int
static
val
Widget_AppCompat_Button_Colored
:
Int
static
val
Widget_AppCompat_Button_Small
:
Int
static
val
Widget_AppCompat_CompoundButton_CheckBox
:
Int
static
val
Widget_AppCompat_CompoundButton_RadioButton
:
Int
static
val
Widget_AppCompat_CompoundButton_Switch
:
Int
static
val
Widget_AppCompat_DrawerArrowToggle
:
Int
static
val
Widget_AppCompat_DropDownItem_Spinner
:
Int
static
val
Widget_AppCompat_EditText
:
Int
static
val
Widget_AppCompat_ImageButton
:
Int
static
val
Widget_AppCompat_Light_ActionBar
:
Int
static
val
Widget_AppCompat_Light_ActionBar_Solid
:
Int
static
val
Widget_AppCompat_Light_ActionBar_Solid_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabBar
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabBar_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabText
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabText_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabView
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabView_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionButton
:
Int
static
val
Widget_AppCompat_Light_ActionButton_CloseMode
:
Int
static
val
Widget_AppCompat_Light_ActionButton_Overflow
:
Int
static
val
Widget_AppCompat_Light_ActionMode_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActivityChooserView
:
Int
static
val
Widget_AppCompat_Light_AutoCompleteTextView
:
Int
static
val
Widget_AppCompat_Light_DropDownItem_Spinner
:
Int
static
val
Widget_AppCompat_Light_ListPopupWindow
:
Int
static
val
Widget_AppCompat_Light_ListView_DropDown
:
Int
static
val
Widget_AppCompat_Light_PopupMenu
:
Int
static
val
Widget_AppCompat_Light_PopupMenu_Overflow
:
Int
static
val
Widget_AppCompat_Light_SearchView
:
Int
static
val
Widget_AppCompat_Light_Spinner_DropDown_ActionBar
:
Int
static
val
Widget_AppCompat_ListMenuView
:
Int
static
val
Widget_AppCompat_ListPopupWindow
:
Int
static
val
Widget_AppCompat_ListView
:
Int
static
val
Widget_AppCompat_ListView_DropDown
:
Int
static
val
Widget_AppCompat_ListView_Menu
:
Int
static
val
Widget_AppCompat_PopupMenu
:
Int
static
val
Widget_AppCompat_PopupMenu_Overflow
:
Int
static
val
Widget_AppCompat_PopupWindow
:
Int
static
val
Widget_AppCompat_ProgressBar
:
Int
static
val
Widget_AppCompat_ProgressBar_Horizontal
:
Int
static
val
Widget_AppCompat_RatingBar
:
Int
static
val
Widget_AppCompat_RatingBar_Indicator
:
Int
static
val
Widget_AppCompat_RatingBar_Small
:
Int
static
val
Widget_AppCompat_SearchView
:
Int
static
val
Widget_AppCompat_SearchView_ActionBar
:
Int
static
val
Widget_AppCompat_SeekBar
:
Int
static
val
Widget_AppCompat_SeekBar_Discrete
:
Int
static
val
Widget_AppCompat_Spinner
:
Int
static
val
Widget_AppCompat_Spinner_DropDown
:
Int
static
val
Widget_AppCompat_Spinner_DropDown_ActionBar
:
Int
static
val
Widget_AppCompat_Spinner_Underlined
:
Int
static
val
Widget_AppCompat_TextView_SpinnerItem
:
Int
static
val
Widget_AppCompat_Toolbar
:
Int
static
val
Widget_AppCompat_Toolbar_Button_Navigation
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
static
val
Widget_Design_AppBarLayout
:
Int
static
val
Widget_Design_BottomNavigationView
:
Int
static
val
Widget_Design_BottomSheet_Modal
:
Int
static
val
Widget_Design_CollapsingToolbar
:
Int
static
val
Widget_Design_FloatingActionButton
:
Int
static
val
Widget_Design_NavigationView
:
Int
static
val
Widget_Design_ScrimInsetsFrameLayout
:
Int
static
val
Widget_Design_Snackbar
:
Int
static
val
Widget_Design_TabLayout
:
Int
static
val
Widget_Design_TextInputLayout
:
Int
static
val
Widget_MaterialComponents_BottomAppBar
:
Int
static
val
Widget_MaterialComponents_BottomAppBar_Colored
:
Int
static
val
Widget_MaterialComponents_BottomNavigationView
:
Int
static
val
Widget_MaterialComponents_BottomNavigationView_Colored
:
Int
static
val
Widget_MaterialComponents_BottomSheet_Modal
:
Int
static
val
Widget_MaterialComponents_Button
:
Int
static
val
Widget_MaterialComponents_Button_Icon
:
Int
static
val
Widget_MaterialComponents_Button_OutlinedButton
:
Int
static
val
Widget_MaterialComponents_Button_OutlinedButton_Icon
:
Int
static
val
Widget_MaterialComponents_Button_TextButton
:
Int
static
val
Widget_MaterialComponents_Button_TextButton_Dialog
:
Int
static
val
Widget_MaterialComponents_Button_TextButton_Dialog_Icon
:
Int
static
val
Widget_MaterialComponents_Button_TextButton_Icon
:
Int
static
val
Widget_MaterialComponents_Button_UnelevatedButton
:
Int
static
val
Widget_MaterialComponents_Button_UnelevatedButton_Icon
:
Int
static
val
Widget_MaterialComponents_CardView
:
Int
static
val
Widget_MaterialComponents_ChipGroup
:
Int
static
val
Widget_MaterialComponents_Chip_Action
:
Int
static
val
Widget_MaterialComponents_Chip_Choice
:
Int
static
val
Widget_MaterialComponents_Chip_Entry
:
Int
static
val
Widget_MaterialComponents_Chip_Filter
:
Int
static
val
Widget_MaterialComponents_FloatingActionButton
:
Int
static
val
Widget_MaterialComponents_NavigationView
:
Int
static
val
Widget_MaterialComponents_Snackbar
:
Int
static
val
Widget_MaterialComponents_Snackbar_FullWidth
:
Int
static
val
Widget_MaterialComponents_TabLayout
:
Int
static
val
Widget_MaterialComponents_TabLayout_Colored
:
Int
static
val
Widget_MaterialComponents_TextInputEditText_FilledBox
:
Int
static
val
Widget_MaterialComponents_TextInputEditText_FilledBox_Dense
:
Int
static
val
Widget_MaterialComponents_TextInputEditText_OutlinedBox
:
Int
static
val
Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense
:
Int
static
val
Widget_MaterialComponents_TextInputLayout_FilledBox
:
Int
static
val
Widget_MaterialComponents_TextInputLayout_FilledBox_Dense
:
Int
static
val
Widget_MaterialComponents_TextInputLayout_OutlinedBox
:
Int
static
val
Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense
:
Int
static
val
Widget_MaterialComponents_Toolbar
:
Int
static
val
Widget_Shrine_Button_TextButton
:
Int
static
val
Widget_Support_CoordinatorLayout
:
Int
class
styleable
Module Contents
styleable
(
)
static
val
ActionBar
:
IntArray
static
val
ActionBarLayout
:
IntArray
static
val
ActionBarLayout_android_layout_gravity
:
Int
static
val
ActionBar_background
:
Int
static
val
ActionBar_backgroundSplit
:
Int
static
val
ActionBar_backgroundStacked
:
Int
static
val
ActionBar_contentInsetEnd
:
Int
static
val
ActionBar_contentInsetEndWithActions
:
Int
static
val
ActionBar_contentInsetLeft
:
Int
static
val
ActionBar_contentInsetRight
:
Int
static
val
ActionBar_contentInsetStart
:
Int
static
val
ActionBar_contentInsetStartWithNavigation
:
Int
static
val
ActionBar_customNavigationLayout
:
Int
static
val
ActionBar_displayOptions
:
Int
static
val
ActionBar_divider
:
Int
static
val
ActionBar_elevation
:
Int
static
val
ActionBar_height
:
Int
static
val
ActionBar_hideOnContentScroll
:
Int
static
val
ActionBar_homeAsUpIndicator
:
Int
static
val
ActionBar_homeLayout
:
Int
static
val
ActionBar_icon
:
Int
static
val
ActionBar_indeterminateProgressStyle
:
Int
static
val
ActionBar_itemPadding
:
Int
static
val
ActionBar_logo
:
Int
static
val
ActionBar_navigationMode
:
Int
static
val
ActionBar_popupTheme
:
Int
static
val
ActionBar_progressBarPadding
:
Int
static
val
ActionBar_progressBarStyle
:
Int
static
val
ActionBar_subtitle
:
Int
static
val
ActionBar_subtitleTextStyle
:
Int
static
val
ActionBar_title
:
Int
static
val
ActionBar_titleTextStyle
:
Int
static
val
ActionMenuItemView
:
IntArray
static
val
ActionMenuItemView_android_minWidth
:
Int
static
val
ActionMenuView
:
IntArray
static
val
ActionMode
:
IntArray
static
val
ActionMode_background
:
Int
static
val
ActionMode_backgroundSplit
:
Int
static
val
ActionMode_closeItemLayout
:
Int
static
val
ActionMode_height
:
Int
static
val
ActionMode_subtitleTextStyle
:
Int
static
val
ActionMode_titleTextStyle
:
Int
static
val
ActivityChooserView
:
IntArray
static
val
ActivityChooserView_expandActivityOverflowButtonDrawable
:
Int
static
val
ActivityChooserView_initialActivityCount
:
Int
static
val
AlertDialog
:
IntArray
static
val
AlertDialog_android_layout
:
Int
static
val
AlertDialog_buttonIconDimen
:
Int
static
val
AlertDialog_buttonPanelSideLayout
:
Int
static
val
AlertDialog_listItemLayout
:
Int
static
val
AlertDialog_listLayout
:
Int
static
val
AlertDialog_multiChoiceItemLayout
:
Int
static
val
AlertDialog_showTitle
:
Int
static
val
AlertDialog_singleChoiceItemLayout
:
Int
static
val
AnimatedStateListDrawableCompat
:
IntArray
static
val
AnimatedStateListDrawableCompat_android_constantSize
:
Int
static
val
AnimatedStateListDrawableCompat_android_dither
:
Int
static
val
AnimatedStateListDrawableCompat_android_enterFadeDuration
:
Int
static
val
AnimatedStateListDrawableCompat_android_exitFadeDuration
:
Int
static
val
AnimatedStateListDrawableCompat_android_variablePadding
:
Int
static
val
AnimatedStateListDrawableCompat_android_visible
:
Int
static
val
AnimatedStateListDrawableItem
:
IntArray
static
val
AnimatedStateListDrawableItem_android_drawable
:
Int
static
val
AnimatedStateListDrawableItem_android_id
:
Int
static
val
AnimatedStateListDrawableTransition
:
IntArray
static
val
AnimatedStateListDrawableTransition_android_drawable
:
Int
static
val
AnimatedStateListDrawableTransition_android_fromId
:
Int
static
val
AnimatedStateListDrawableTransition_android_reversible
:
Int
static
val
AnimatedStateListDrawableTransition_android_toId
:
Int
static
val
AppBarLayout
:
IntArray
static
val
AppBarLayoutStates
:
IntArray
static
val
AppBarLayoutStates_state_collapsed
:
Int
static
val
AppBarLayoutStates_state_collapsible
:
Int
static
val
AppBarLayoutStates_state_liftable
:
Int
static
val
AppBarLayoutStates_state_lifted
:
Int
static
val
AppBarLayout_Layout
:
IntArray
static
val
AppBarLayout_Layout_layout_scrollFlags
:
Int
static
val
AppBarLayout_Layout_layout_scrollInterpolator
:
Int
static
val
AppBarLayout_android_background
:
Int
static
val
AppBarLayout_android_keyboardNavigationCluster
:
Int
static
val
AppBarLayout_android_touchscreenBlocksFocus
:
Int
static
val
AppBarLayout_elevation
:
Int
static
val
AppBarLayout_expanded
:
Int
static
val
AppBarLayout_liftOnScroll
:
Int
static
val
AppCompatImageView
:
IntArray
static
val
AppCompatImageView_android_src
:
Int
static
val
AppCompatImageView_srcCompat
:
Int
static
val
AppCompatImageView_tint
:
Int
static
val
AppCompatImageView_tintMode
:
Int
static
val
AppCompatSeekBar
:
IntArray
static
val
AppCompatSeekBar_android_thumb
:
Int
static
val
AppCompatSeekBar_tickMark
:
Int
static
val
AppCompatSeekBar_tickMarkTint
:
Int
static
val
AppCompatSeekBar_tickMarkTintMode
:
Int
static
val
AppCompatTextHelper
:
IntArray
static
val
AppCompatTextHelper_android_drawableBottom
:
Int
static
val
AppCompatTextHelper_android_drawableEnd
:
Int
static
val
AppCompatTextHelper_android_drawableLeft
:
Int
static
val
AppCompatTextHelper_android_drawableRight
:
Int
static
val
AppCompatTextHelper_android_drawableStart
:
Int
static
val
AppCompatTextHelper_android_drawableTop
:
Int
static
val
AppCompatTextHelper_android_textAppearance
:
Int
static
val
AppCompatTextView
:
IntArray
static
val
AppCompatTextView_android_textAppearance
:
Int
static
val
AppCompatTextView_autoSizeMaxTextSize
:
Int
static
val
AppCompatTextView_autoSizeMinTextSize
:
Int
static
val
AppCompatTextView_autoSizePresetSizes
:
Int
static
val
AppCompatTextView_autoSizeStepGranularity
:
Int
static
val
AppCompatTextView_autoSizeTextType
:
Int
static
val
AppCompatTextView_firstBaselineToTopHeight
:
Int
static
val
AppCompatTextView_fontFamily
:
Int
static
val
AppCompatTextView_lastBaselineToBottomHeight
:
Int
static
val
AppCompatTextView_lineHeight
:
Int
static
val
AppCompatTextView_textAllCaps
:
Int
static
val
AppCompatTheme
:
IntArray
static
val
AppCompatTheme_actionBarDivider
:
Int
static
val
AppCompatTheme_actionBarItemBackground
:
Int
static
val
AppCompatTheme_actionBarPopupTheme
:
Int
static
val
AppCompatTheme_actionBarSize
:
Int
static
val
AppCompatTheme_actionBarSplitStyle
:
Int
static
val
AppCompatTheme_actionBarStyle
:
Int
static
val
AppCompatTheme_actionBarTabBarStyle
:
Int
static
val
AppCompatTheme_actionBarTabStyle
:
Int
static
val
AppCompatTheme_actionBarTabTextStyle
:
Int
static
val
AppCompatTheme_actionBarTheme
:
Int
static
val
AppCompatTheme_actionBarWidgetTheme
:
Int
static
val
AppCompatTheme_actionButtonStyle
:
Int
static
val
AppCompatTheme_actionDropDownStyle
:
Int
static
val
AppCompatTheme_actionMenuTextAppearance
:
Int
static
val
AppCompatTheme_actionMenuTextColor
:
Int
static
val
AppCompatTheme_actionModeBackground
:
Int
static
val
AppCompatTheme_actionModeCloseButtonStyle
:
Int
static
val
AppCompatTheme_actionModeCloseDrawable
:
Int
static
val
AppCompatTheme_actionModeCopyDrawable
:
Int
static
val
AppCompatTheme_actionModeCutDrawable
:
Int
static
val
AppCompatTheme_actionModeFindDrawable
:
Int
static
val
AppCompatTheme_actionModePasteDrawable
:
Int
static
val
AppCompatTheme_actionModePopupWindowStyle
:
Int
static
val
AppCompatTheme_actionModeSelectAllDrawable
:
Int
static
val
AppCompatTheme_actionModeShareDrawable
:
Int
static
val
AppCompatTheme_actionModeSplitBackground
:
Int
static
val
AppCompatTheme_actionModeStyle
:
Int
static
val
AppCompatTheme_actionModeWebSearchDrawable
:
Int
static
val
AppCompatTheme_actionOverflowButtonStyle
:
Int
static
val
AppCompatTheme_actionOverflowMenuStyle
:
Int
static
val
AppCompatTheme_activityChooserViewStyle
:
Int
static
val
AppCompatTheme_alertDialogButtonGroupStyle
:
Int
static
val
AppCompatTheme_alertDialogCenterButtons
:
Int
static
val
AppCompatTheme_alertDialogStyle
:
Int
static
val
AppCompatTheme_alertDialogTheme
:
Int
static
val
AppCompatTheme_android_windowAnimationStyle
:
Int
static
val
AppCompatTheme_android_windowIsFloating
:
Int
static
val
AppCompatTheme_autoCompleteTextViewStyle
:
Int
static
val
AppCompatTheme_borderlessButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarNegativeButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarNeutralButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarPositiveButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarStyle
:
Int
static
val
AppCompatTheme_buttonStyle
:
Int
static
val
AppCompatTheme_buttonStyleSmall
:
Int
static
val
AppCompatTheme_checkboxStyle
:
Int
static
val
AppCompatTheme_checkedTextViewStyle
:
Int
static
val
AppCompatTheme_colorAccent
:
Int
static
val
AppCompatTheme_colorBackgroundFloating
:
Int
static
val
AppCompatTheme_colorButtonNormal
:
Int
static
val
AppCompatTheme_colorControlActivated
:
Int
static
val
AppCompatTheme_colorControlHighlight
:
Int
static
val
AppCompatTheme_colorControlNormal
:
Int
static
val
AppCompatTheme_colorError
:
Int
static
val
AppCompatTheme_colorPrimary
:
Int
static
val
AppCompatTheme_colorPrimaryDark
:
Int
static
val
AppCompatTheme_colorSwitchThumbNormal
:
Int
static
val
AppCompatTheme_controlBackground
:
Int
static
val
AppCompatTheme_dialogCornerRadius
:
Int
static
val
AppCompatTheme_dialogPreferredPadding
:
Int
static
val
AppCompatTheme_dialogTheme
:
Int
static
val
AppCompatTheme_dividerHorizontal
:
Int
static
val
AppCompatTheme_dividerVertical
:
Int
static
val
AppCompatTheme_dropDownListViewStyle
:
Int
static
val
AppCompatTheme_dropdownListPreferredItemHeight
:
Int
static
val
AppCompatTheme_editTextBackground
:
Int
static
val
AppCompatTheme_editTextColor
:
Int
static
val
AppCompatTheme_editTextStyle
:
Int
static
val
AppCompatTheme_homeAsUpIndicator
:
Int
static
val
AppCompatTheme_imageButtonStyle
:
Int
static
val
AppCompatTheme_listChoiceBackgroundIndicator
:
Int
static
val
AppCompatTheme_listDividerAlertDialog
:
Int
static
val
AppCompatTheme_listMenuViewStyle
:
Int
static
val
AppCompatTheme_listPopupWindowStyle
:
Int
static
val
AppCompatTheme_listPreferredItemHeight
:
Int
static
val
AppCompatTheme_listPreferredItemHeightLarge
:
Int
static
val
AppCompatTheme_listPreferredItemHeightSmall
:
Int
static
val
AppCompatTheme_listPreferredItemPaddingLeft
:
Int
static
val
AppCompatTheme_listPreferredItemPaddingRight
:
Int
static
val
AppCompatTheme_panelBackground
:
Int
static
val
AppCompatTheme_panelMenuListTheme
:
Int
static
val
AppCompatTheme_panelMenuListWidth
:
Int
static
val
AppCompatTheme_popupMenuStyle
:
Int
static
val
AppCompatTheme_popupWindowStyle
:
Int
static
val
AppCompatTheme_radioButtonStyle
:
Int
static
val
AppCompatTheme_ratingBarStyle
:
Int
static
val
AppCompatTheme_ratingBarStyleIndicator
:
Int
static
val
AppCompatTheme_ratingBarStyleSmall
:
Int
static
val
AppCompatTheme_searchViewStyle
:
Int
static
val
AppCompatTheme_seekBarStyle
:
Int
static
val
AppCompatTheme_selectableItemBackground
:
Int
static
val
AppCompatTheme_selectableItemBackgroundBorderless
:
Int
static
val
AppCompatTheme_spinnerDropDownItemStyle
:
Int
static
val
AppCompatTheme_spinnerStyle
:
Int
static
val
AppCompatTheme_switchStyle
:
Int
static
val
AppCompatTheme_textAppearanceLargePopupMenu
:
Int
static
val
AppCompatTheme_textAppearanceListItem
:
Int
static
val
AppCompatTheme_textAppearanceListItemSecondary
:
Int
static
val
AppCompatTheme_textAppearanceListItemSmall
:
Int
static
val
AppCompatTheme_textAppearancePopupMenuHeader
:
Int
static
val
AppCompatTheme_textAppearanceSearchResultSubtitle
:
Int
static
val
AppCompatTheme_textAppearanceSearchResultTitle
:
Int
static
val
AppCompatTheme_textAppearanceSmallPopupMenu
:
Int
static
val
AppCompatTheme_textColorAlertDialogListItem
:
Int
static
val
AppCompatTheme_textColorSearchUrl
:
Int
static
val
AppCompatTheme_toolbarNavigationButtonStyle
:
Int
static
val
AppCompatTheme_toolbarStyle
:
Int
static
val
AppCompatTheme_tooltipForegroundColor
:
Int
static
val
AppCompatTheme_tooltipFrameBackground
:
Int
static
val
AppCompatTheme_viewInflaterClass
:
Int
static
val
AppCompatTheme_windowActionBar
:
Int
static
val
AppCompatTheme_windowActionBarOverlay
:
Int
static
val
AppCompatTheme_windowActionModeOverlay
:
Int
static
val
AppCompatTheme_windowFixedHeightMajor
:
Int
static
val
AppCompatTheme_windowFixedHeightMinor
:
Int
static
val
AppCompatTheme_windowFixedWidthMajor
:
Int
static
val
AppCompatTheme_windowFixedWidthMinor
:
Int
static
val
AppCompatTheme_windowMinWidthMajor
:
Int
static
val
AppCompatTheme_windowMinWidthMinor
:
Int
static
val
AppCompatTheme_windowNoTitle
:
Int
static
val
BottomAppBar
:
IntArray
static
val
BottomAppBar_backgroundTint
:
Int
static
val
BottomAppBar_fabAlignmentMode
:
Int
static
val
BottomAppBar_fabCradleMargin
:
Int
static
val
BottomAppBar_fabCradleRoundedCornerRadius
:
Int
static
val
BottomAppBar_fabCradleVerticalOffset
:
Int
static
val
BottomAppBar_hideOnScroll
:
Int
static
val
BottomNavigationView
:
IntArray
static
val
BottomNavigationView_elevation
:
Int
static
val
BottomNavigationView_itemBackground
:
Int
static
val
BottomNavigationView_itemHorizontalTranslationEnabled
:
Int
static
val
BottomNavigationView_itemIconSize
:
Int
static
val
BottomNavigationView_itemIconTint
:
Int
static
val
BottomNavigationView_itemTextAppearanceActive
:
Int
static
val
BottomNavigationView_itemTextAppearanceInactive
:
Int
static
val
BottomNavigationView_itemTextColor
:
Int
static
val
BottomNavigationView_labelVisibilityMode
:
Int
static
val
BottomNavigationView_menu
:
Int
static
val
BottomSheetBehavior_Layout
:
IntArray
static
val
BottomSheetBehavior_Layout_behavior_fitToContents
:
Int
static
val
BottomSheetBehavior_Layout_behavior_hideable
:
Int
static
val
BottomSheetBehavior_Layout_behavior_peekHeight
:
Int
static
val
BottomSheetBehavior_Layout_behavior_skipCollapsed
:
Int
static
val
ButtonBarLayout
:
IntArray
static
val
ButtonBarLayout_allowStacking
:
Int
static
val
CardView
:
IntArray
static
val
CardView_android_minHeight
:
Int
static
val
CardView_android_minWidth
:
Int
static
val
CardView_cardBackgroundColor
:
Int
static
val
CardView_cardCornerRadius
:
Int
static
val
CardView_cardElevation
:
Int
static
val
CardView_cardMaxElevation
:
Int
static
val
CardView_cardPreventCornerOverlap
:
Int
static
val
CardView_cardUseCompatPadding
:
Int
static
val
CardView_contentPadding
:
Int
static
val
CardView_contentPaddingBottom
:
Int
static
val
CardView_contentPaddingLeft
:
Int
static
val
CardView_contentPaddingRight
:
Int
static
val
CardView_contentPaddingTop
:
Int
static
val
Chip
:
IntArray
static
val
ChipGroup
:
IntArray
static
val
ChipGroup_checkedChip
:
Int
static
val
ChipGroup_chipSpacing
:
Int
static
val
ChipGroup_chipSpacingHorizontal
:
Int
static
val
ChipGroup_chipSpacingVertical
:
Int
static
val
ChipGroup_singleLine
:
Int
static
val
ChipGroup_singleSelection
:
Int
static
val
Chip_android_checkable
:
Int
static
val
Chip_android_ellipsize
:
Int
static
val
Chip_android_maxWidth
:
Int
static
val
Chip_android_text
:
Int
static
val
Chip_android_textAppearance
:
Int
static
val
Chip_checkedIcon
:
Int
static
val
Chip_checkedIconEnabled
:
Int
static
val
Chip_checkedIconVisible
:
Int
static
val
Chip_chipBackgroundColor
:
Int
static
val
Chip_chipCornerRadius
:
Int
static
val
Chip_chipEndPadding
:
Int
static
val
Chip_chipIcon
:
Int
static
val
Chip_chipIconEnabled
:
Int
static
val
Chip_chipIconSize
:
Int
static
val
Chip_chipIconTint
:
Int
static
val
Chip_chipIconVisible
:
Int
static
val
Chip_chipMinHeight
:
Int
static
val
Chip_chipStartPadding
:
Int
static
val
Chip_chipStrokeColor
:
Int
static
val
Chip_chipStrokeWidth
:
Int
static
val
Chip_closeIcon
:
Int
static
val
Chip_closeIconEnabled
:
Int
static
val
Chip_closeIconEndPadding
:
Int
static
val
Chip_closeIconSize
:
Int
static
val
Chip_closeIconStartPadding
:
Int
static
val
Chip_closeIconTint
:
Int
static
val
Chip_closeIconVisible
:
Int
static
val
Chip_hideMotionSpec
:
Int
static
val
Chip_iconEndPadding
:
Int
static
val
Chip_iconStartPadding
:
Int
static
val
Chip_rippleColor
:
Int
static
val
Chip_showMotionSpec
:
Int
static
val
Chip_textEndPadding
:
Int
static
val
Chip_textStartPadding
:
Int
static
val
CollapsingToolbarLayout
:
IntArray
static
val
CollapsingToolbarLayout_Layout
:
IntArray
static
val
CollapsingToolbarLayout_Layout_layout_collapseMode
:
Int
static
val
CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier
:
Int
static
val
CollapsingToolbarLayout_collapsedTitleGravity
:
Int
static
val
CollapsingToolbarLayout_collapsedTitleTextAppearance
:
Int
static
val
CollapsingToolbarLayout_contentScrim
:
Int
static
val
CollapsingToolbarLayout_expandedTitleGravity
:
Int
static
val
CollapsingToolbarLayout_expandedTitleMargin
:
Int
static
val
CollapsingToolbarLayout_expandedTitleMarginBottom
:
Int
static
val
CollapsingToolbarLayout_expandedTitleMarginEnd
:
Int
static
val
CollapsingToolbarLayout_expandedTitleMarginStart
:
Int
static
val
CollapsingToolbarLayout_expandedTitleMarginTop
:
Int
static
val
CollapsingToolbarLayout_expandedTitleTextAppearance
:
Int
static
val
CollapsingToolbarLayout_scrimAnimationDuration
:
Int
static
val
CollapsingToolbarLayout_scrimVisibleHeightTrigger
:
Int
static
val
CollapsingToolbarLayout_statusBarScrim
:
Int
static
val
CollapsingToolbarLayout_title
:
Int
static
val
CollapsingToolbarLayout_titleEnabled
:
Int
static
val
CollapsingToolbarLayout_toolbarId
:
Int
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
CompoundButton
:
IntArray
static
val
CompoundButton_android_button
:
Int
static
val
CompoundButton_buttonTint
:
Int
static
val
CompoundButton_buttonTintMode
:
Int
static
val
ConstraintLayout_Layout
:
IntArray
static
val
ConstraintLayout_Layout_android_maxHeight
:
Int
static
val
ConstraintLayout_Layout_android_maxWidth
:
Int
static
val
ConstraintLayout_Layout_android_minHeight
:
Int
static
val
ConstraintLayout_Layout_android_minWidth
:
Int
static
val
ConstraintLayout_Layout_android_orientation
:
Int
static
val
ConstraintLayout_Layout_barrierAllowsGoneWidgets
:
Int
static
val
ConstraintLayout_Layout_barrierDirection
:
Int
static
val
ConstraintLayout_Layout_chainUseRtl
:
Int
static
val
ConstraintLayout_Layout_constraintSet
:
Int
static
val
ConstraintLayout_Layout_constraint_referenced_ids
:
Int
static
val
ConstraintLayout_Layout_layout_constrainedHeight
:
Int
static
val
ConstraintLayout_Layout_layout_constrainedWidth
:
Int
static
val
ConstraintLayout_Layout_layout_constraintBaseline_creator
:
Int
static
val
ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintBottom_creator
:
Int
static
val
ConstraintLayout_Layout_layout_constraintBottom_toBottomOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintBottom_toTopOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintCircle
:
Int
static
val
ConstraintLayout_Layout_layout_constraintCircleAngle
:
Int
static
val
ConstraintLayout_Layout_layout_constraintCircleRadius
:
Int
static
val
ConstraintLayout_Layout_layout_constraintDimensionRatio
:
Int
static
val
ConstraintLayout_Layout_layout_constraintEnd_toEndOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintEnd_toStartOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintGuide_begin
:
Int
static
val
ConstraintLayout_Layout_layout_constraintGuide_end
:
Int
static
val
ConstraintLayout_Layout_layout_constraintGuide_percent
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHeight_default
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHeight_max
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHeight_min
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHeight_percent
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHorizontal_bias
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHorizontal_weight
:
Int
static
val
ConstraintLayout_Layout_layout_constraintLeft_creator
:
Int
static
val
ConstraintLayout_Layout_layout_constraintLeft_toLeftOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintLeft_toRightOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintRight_creator
:
Int
static
val
ConstraintLayout_Layout_layout_constraintRight_toLeftOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintRight_toRightOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintStart_toEndOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintStart_toStartOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintTop_creator
:
Int
static
val
ConstraintLayout_Layout_layout_constraintTop_toBottomOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintTop_toTopOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintVertical_bias
:
Int
static
val
ConstraintLayout_Layout_layout_constraintVertical_chainStyle
:
Int
static
val
ConstraintLayout_Layout_layout_constraintVertical_weight
:
Int
static
val
ConstraintLayout_Layout_layout_constraintWidth_default
:
Int
static
val
ConstraintLayout_Layout_layout_constraintWidth_max
:
Int
static
val
ConstraintLayout_Layout_layout_constraintWidth_min
:
Int
static
val
ConstraintLayout_Layout_layout_constraintWidth_percent
:
Int
static
val
ConstraintLayout_Layout_layout_editor_absoluteX
:
Int
static
val
ConstraintLayout_Layout_layout_editor_absoluteY
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginBottom
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginEnd
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginLeft
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginRight
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginStart
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginTop
:
Int
static
val
ConstraintLayout_Layout_layout_optimizationLevel
:
Int
static
val
ConstraintLayout_placeholder
:
IntArray
static
val
ConstraintLayout_placeholder_content
:
Int
static
val
ConstraintLayout_placeholder_emptyVisibility
:
Int
static
val
ConstraintSet
:
IntArray
static
val
ConstraintSet_android_alpha
:
Int
static
val
ConstraintSet_android_elevation
:
Int
static
val
ConstraintSet_android_id
:
Int
static
val
ConstraintSet_android_layout_height
:
Int
static
val
ConstraintSet_android_layout_marginBottom
:
Int
static
val
ConstraintSet_android_layout_marginEnd
:
Int
static
val
ConstraintSet_android_layout_marginLeft
:
Int
static
val
ConstraintSet_android_layout_marginRight
:
Int
static
val
ConstraintSet_android_layout_marginStart
:
Int
static
val
ConstraintSet_android_layout_marginTop
:
Int
static
val
ConstraintSet_android_layout_width
:
Int
static
val
ConstraintSet_android_maxHeight
:
Int
static
val
ConstraintSet_android_maxWidth
:
Int
static
val
ConstraintSet_android_minHeight
:
Int
static
val
ConstraintSet_android_minWidth
:
Int
static
val
ConstraintSet_android_orientation
:
Int
static
val
ConstraintSet_android_rotation
:
Int
static
val
ConstraintSet_android_rotationX
:
Int
static
val
ConstraintSet_android_rotationY
:
Int
static
val
ConstraintSet_android_scaleX
:
Int
static
val
ConstraintSet_android_scaleY
:
Int
static
val
ConstraintSet_android_transformPivotX
:
Int
static
val
ConstraintSet_android_transformPivotY
:
Int
static
val
ConstraintSet_android_translationX
:
Int
static
val
ConstraintSet_android_translationY
:
Int
static
val
ConstraintSet_android_translationZ
:
Int
static
val
ConstraintSet_android_visibility
:
Int
static
val
ConstraintSet_barrierAllowsGoneWidgets
:
Int
static
val
ConstraintSet_barrierDirection
:
Int
static
val
ConstraintSet_chainUseRtl
:
Int
static
val
ConstraintSet_constraint_referenced_ids
:
Int
static
val
ConstraintSet_layout_constrainedHeight
:
Int
static
val
ConstraintSet_layout_constrainedWidth
:
Int
static
val
ConstraintSet_layout_constraintBaseline_creator
:
Int
static
val
ConstraintSet_layout_constraintBaseline_toBaselineOf
:
Int
static
val
ConstraintSet_layout_constraintBottom_creator
:
Int
static
val
ConstraintSet_layout_constraintBottom_toBottomOf
:
Int
static
val
ConstraintSet_layout_constraintBottom_toTopOf
:
Int
static
val
ConstraintSet_layout_constraintCircle
:
Int
static
val
ConstraintSet_layout_constraintCircleAngle
:
Int
static
val
ConstraintSet_layout_constraintCircleRadius
:
Int
static
val
ConstraintSet_layout_constraintDimensionRatio
:
Int
static
val
ConstraintSet_layout_constraintEnd_toEndOf
:
Int
static
val
ConstraintSet_layout_constraintEnd_toStartOf
:
Int
static
val
ConstraintSet_layout_constraintGuide_begin
:
Int
static
val
ConstraintSet_layout_constraintGuide_end
:
Int
static
val
ConstraintSet_layout_constraintGuide_percent
:
Int
static
val
ConstraintSet_layout_constraintHeight_default
:
Int
static
val
ConstraintSet_layout_constraintHeight_max
:
Int
static
val
ConstraintSet_layout_constraintHeight_min
:
Int
static
val
ConstraintSet_layout_constraintHeight_percent
:
Int
static
val
ConstraintSet_layout_constraintHorizontal_bias
:
Int
static
val
ConstraintSet_layout_constraintHorizontal_chainStyle
:
Int
static
val
ConstraintSet_layout_constraintHorizontal_weight
:
Int
static
val
ConstraintSet_layout_constraintLeft_creator
:
Int
static
val
ConstraintSet_layout_constraintLeft_toLeftOf
:
Int
static
val
ConstraintSet_layout_constraintLeft_toRightOf
:
Int
static
val
ConstraintSet_layout_constraintRight_creator
:
Int
static
val
ConstraintSet_layout_constraintRight_toLeftOf
:
Int
static
val
ConstraintSet_layout_constraintRight_toRightOf
:
Int
static
val
ConstraintSet_layout_constraintStart_toEndOf
:
Int
static
val
ConstraintSet_layout_constraintStart_toStartOf
:
Int
static
val
ConstraintSet_layout_constraintTop_creator
:
Int
static
val
ConstraintSet_layout_constraintTop_toBottomOf
:
Int
static
val
ConstraintSet_layout_constraintTop_toTopOf
:
Int
static
val
ConstraintSet_layout_constraintVertical_bias
:
Int
static
val
ConstraintSet_layout_constraintVertical_chainStyle
:
Int
static
val
ConstraintSet_layout_constraintVertical_weight
:
Int
static
val
ConstraintSet_layout_constraintWidth_default
:
Int
static
val
ConstraintSet_layout_constraintWidth_max
:
Int
static
val
ConstraintSet_layout_constraintWidth_min
:
Int
static
val
ConstraintSet_layout_constraintWidth_percent
:
Int
static
val
ConstraintSet_layout_editor_absoluteX
:
Int
static
val
ConstraintSet_layout_editor_absoluteY
:
Int
static
val
ConstraintSet_layout_goneMarginBottom
:
Int
static
val
ConstraintSet_layout_goneMarginEnd
:
Int
static
val
ConstraintSet_layout_goneMarginLeft
:
Int
static
val
ConstraintSet_layout_goneMarginRight
:
Int
static
val
ConstraintSet_layout_goneMarginStart
:
Int
static
val
ConstraintSet_layout_goneMarginTop
:
Int
static
val
CoordinatorLayout
:
IntArray
static
val
CoordinatorLayout_Layout
:
IntArray
static
val
CoordinatorLayout_Layout_android_layout_gravity
:
Int
static
val
CoordinatorLayout_Layout_layout_anchor
:
Int
static
val
CoordinatorLayout_Layout_layout_anchorGravity
:
Int
static
val
CoordinatorLayout_Layout_layout_behavior
:
Int
static
val
CoordinatorLayout_Layout_layout_dodgeInsetEdges
:
Int
static
val
CoordinatorLayout_Layout_layout_insetEdge
:
Int
static
val
CoordinatorLayout_Layout_layout_keyline
:
Int
static
val
CoordinatorLayout_keylines
:
Int
static
val
CoordinatorLayout_statusBarBackground
:
Int
static
val
DesignTheme
:
IntArray
static
val
DesignTheme_bottomSheetDialogTheme
:
Int
static
val
DesignTheme_bottomSheetStyle
:
Int
static
val
DrawerArrowToggle
:
IntArray
static
val
DrawerArrowToggle_arrowHeadLength
:
Int
static
val
DrawerArrowToggle_arrowShaftLength
:
Int
static
val
DrawerArrowToggle_barLength
:
Int
static
val
DrawerArrowToggle_color
:
Int
static
val
DrawerArrowToggle_drawableSize
:
Int
static
val
DrawerArrowToggle_gapBetweenBars
:
Int
static
val
DrawerArrowToggle_spinBars
:
Int
static
val
DrawerArrowToggle_thickness
:
Int
static
val
FloatingActionButton
:
IntArray
static
val
FloatingActionButton_Behavior_Layout
:
IntArray
static
val
FloatingActionButton_Behavior_Layout_behavior_autoHide
:
Int
static
val
FloatingActionButton_backgroundTint
:
Int
static
val
FloatingActionButton_backgroundTintMode
:
Int
static
val
FloatingActionButton_borderWidth
:
Int
static
val
FloatingActionButton_elevation
:
Int
static
val
FloatingActionButton_fabCustomSize
:
Int
static
val
FloatingActionButton_fabSize
:
Int
static
val
FloatingActionButton_hideMotionSpec
:
Int
static
val
FloatingActionButton_hoveredFocusedTranslationZ
:
Int
static
val
FloatingActionButton_maxImageSize
:
Int
static
val
FloatingActionButton_pressedTranslationZ
:
Int
static
val
FloatingActionButton_rippleColor
:
Int
static
val
FloatingActionButton_showMotionSpec
:
Int
static
val
FloatingActionButton_useCompatPadding
:
Int
static
val
FlowLayout
:
IntArray
static
val
FlowLayout_itemSpacing
:
Int
static
val
FlowLayout_lineSpacing
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
ForegroundLinearLayout
:
IntArray
static
val
ForegroundLinearLayout_android_foreground
:
Int
static
val
ForegroundLinearLayout_android_foregroundGravity
:
Int
static
val
ForegroundLinearLayout_foregroundInsidePadding
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
static
val
LinearConstraintLayout
:
IntArray
static
val
LinearConstraintLayout_android_orientation
:
Int
static
val
LinearLayoutCompat
:
IntArray
static
val
LinearLayoutCompat_Layout
:
IntArray
static
val
LinearLayoutCompat_Layout_android_layout_gravity
:
Int
static
val
LinearLayoutCompat_Layout_android_layout_height
:
Int
static
val
LinearLayoutCompat_Layout_android_layout_weight
:
Int
static
val
LinearLayoutCompat_Layout_android_layout_width
:
Int
static
val
LinearLayoutCompat_android_baselineAligned
:
Int
static
val
LinearLayoutCompat_android_baselineAlignedChildIndex
:
Int
static
val
LinearLayoutCompat_android_gravity
:
Int
static
val
LinearLayoutCompat_android_orientation
:
Int
static
val
LinearLayoutCompat_android_weightSum
:
Int
static
val
LinearLayoutCompat_divider
:
Int
static
val
LinearLayoutCompat_dividerPadding
:
Int
static
val
LinearLayoutCompat_measureWithLargestChild
:
Int
static
val
LinearLayoutCompat_showDividers
:
Int
static
val
ListPopupWindow
:
IntArray
static
val
ListPopupWindow_android_dropDownHorizontalOffset
:
Int
static
val
ListPopupWindow_android_dropDownVerticalOffset
:
Int
static
val
MaterialButton
:
IntArray
static
val
MaterialButton_android_insetBottom
:
Int
static
val
MaterialButton_android_insetLeft
:
Int
static
val
MaterialButton_android_insetRight
:
Int
static
val
MaterialButton_android_insetTop
:
Int
static
val
MaterialButton_backgroundTint
:
Int
static
val
MaterialButton_backgroundTintMode
:
Int
static
val
MaterialButton_cornerRadius
:
Int
static
val
MaterialButton_icon
:
Int
static
val
MaterialButton_iconGravity
:
Int
static
val
MaterialButton_iconPadding
:
Int
static
val
MaterialButton_iconSize
:
Int
static
val
MaterialButton_iconTint
:
Int
static
val
MaterialButton_iconTintMode
:
Int
static
val
MaterialButton_rippleColor
:
Int
static
val
MaterialButton_strokeColor
:
Int
static
val
MaterialButton_strokeWidth
:
Int
static
val
MaterialCardView
:
IntArray
static
val
MaterialCardView_strokeColor
:
Int
static
val
MaterialCardView_strokeWidth
:
Int
static
val
MaterialComponentsTheme
:
IntArray
static
val
MaterialComponentsTheme_bottomSheetDialogTheme
:
Int
static
val
MaterialComponentsTheme_bottomSheetStyle
:
Int
static
val
MaterialComponentsTheme_chipGroupStyle
:
Int
static
val
MaterialComponentsTheme_chipStandaloneStyle
:
Int
static
val
MaterialComponentsTheme_chipStyle
:
Int
static
val
MaterialComponentsTheme_colorAccent
:
Int
static
val
MaterialComponentsTheme_colorBackgroundFloating
:
Int
static
val
MaterialComponentsTheme_colorPrimary
:
Int
static
val
MaterialComponentsTheme_colorPrimaryDark
:
Int
static
val
MaterialComponentsTheme_colorSecondary
:
Int
static
val
MaterialComponentsTheme_editTextStyle
:
Int
static
val
MaterialComponentsTheme_floatingActionButtonStyle
:
Int
static
val
MaterialComponentsTheme_materialButtonStyle
:
Int
static
val
MaterialComponentsTheme_materialCardViewStyle
:
Int
static
val
MaterialComponentsTheme_navigationViewStyle
:
Int
static
val
MaterialComponentsTheme_scrimBackground
:
Int
static
val
MaterialComponentsTheme_snackbarButtonStyle
:
Int
static
val
MaterialComponentsTheme_tabStyle
:
Int
static
val
MaterialComponentsTheme_textAppearanceBody1
:
Int
static
val
MaterialComponentsTheme_textAppearanceBody2
:
Int
static
val
MaterialComponentsTheme_textAppearanceButton
:
Int
static
val
MaterialComponentsTheme_textAppearanceCaption
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline1
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline2
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline3
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline4
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline5
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline6
:
Int
static
val
MaterialComponentsTheme_textAppearanceOverline
:
Int
static
val
MaterialComponentsTheme_textAppearanceSubtitle1
:
Int
static
val
MaterialComponentsTheme_textAppearanceSubtitle2
:
Int
static
val
MaterialComponentsTheme_textInputStyle
:
Int
static
val
MenuGroup
:
IntArray
static
val
MenuGroup_android_checkableBehavior
:
Int
static
val
MenuGroup_android_enabled
:
Int
static
val
MenuGroup_android_id
:
Int
static
val
MenuGroup_android_menuCategory
:
Int
static
val
MenuGroup_android_orderInCategory
:
Int
static
val
MenuGroup_android_visible
:
Int
static
val
MenuItem
:
IntArray
static
val
MenuItem_actionLayout
:
Int
static
val
MenuItem_actionProviderClass
:
Int
static
val
MenuItem_actionViewClass
:
Int
static
val
MenuItem_alphabeticModifiers
:
Int
static
val
MenuItem_android_alphabeticShortcut
:
Int
static
val
MenuItem_android_checkable
:
Int
static
val
MenuItem_android_checked
:
Int
static
val
MenuItem_android_enabled
:
Int
static
val
MenuItem_android_icon
:
Int
static
val
MenuItem_android_id
:
Int
static
val
MenuItem_android_menuCategory
:
Int
static
val
MenuItem_android_numericShortcut
:
Int
static
val
MenuItem_android_onClick
:
Int
static
val
MenuItem_android_orderInCategory
:
Int
static
val
MenuItem_android_title
:
Int
static
val
MenuItem_android_titleCondensed
:
Int
static
val
MenuItem_android_visible
:
Int
static
val
MenuItem_contentDescription
:
Int
static
val
MenuItem_iconTint
:
Int
static
val
MenuItem_iconTintMode
:
Int
static
val
MenuItem_numericModifiers
:
Int
static
val
MenuItem_showAsAction
:
Int
static
val
MenuItem_tooltipText
:
Int
static
val
MenuView
:
IntArray
static
val
MenuView_android_headerBackground
:
Int
static
val
MenuView_android_horizontalDivider
:
Int
static
val
MenuView_android_itemBackground
:
Int
static
val
MenuView_android_itemIconDisabledAlpha
:
Int
static
val
MenuView_android_itemTextAppearance
:
Int
static
val
MenuView_android_verticalDivider
:
Int
static
val
MenuView_android_windowAnimationStyle
:
Int
static
val
MenuView_preserveIconSpacing
:
Int
static
val
MenuView_subMenuArrow
:
Int
static
val
NavigationView
:
IntArray
static
val
NavigationView_android_background
:
Int
static
val
NavigationView_android_fitsSystemWindows
:
Int
static
val
NavigationView_android_maxWidth
:
Int
static
val
NavigationView_elevation
:
Int
static
val
NavigationView_headerLayout
:
Int
static
val
NavigationView_itemBackground
:
Int
static
val
NavigationView_itemHorizontalPadding
:
Int
static
val
NavigationView_itemIconPadding
:
Int
static
val
NavigationView_itemIconTint
:
Int
static
val
NavigationView_itemTextAppearance
:
Int
static
val
NavigationView_itemTextColor
:
Int
static
val
NavigationView_menu
:
Int
static
val
PopupWindow
:
IntArray
static
val
PopupWindowBackgroundState
:
IntArray
static
val
PopupWindowBackgroundState_state_above_anchor
:
Int
static
val
PopupWindow_android_popupAnimationStyle
:
Int
static
val
PopupWindow_android_popupBackground
:
Int
static
val
PopupWindow_overlapAnchor
:
Int
static
val
RecycleListView
:
IntArray
static
val
RecycleListView_paddingBottomNoButtons
:
Int
static
val
RecycleListView_paddingTopNoTitle
:
Int
static
val
RecyclerView
:
IntArray
static
val
RecyclerView_android_descendantFocusability
:
Int
static
val
RecyclerView_android_orientation
:
Int
static
val
RecyclerView_fastScrollEnabled
:
Int
static
val
RecyclerView_fastScrollHorizontalThumbDrawable
:
Int
static
val
RecyclerView_fastScrollHorizontalTrackDrawable
:
Int
static
val
RecyclerView_fastScrollVerticalThumbDrawable
:
Int
static
val
RecyclerView_fastScrollVerticalTrackDrawable
:
Int
static
val
RecyclerView_layoutManager
:
Int
static
val
RecyclerView_reverseLayout
:
Int
static
val
RecyclerView_spanCount
:
Int
static
val
RecyclerView_stackFromEnd
:
Int
static
val
ScrimInsetsFrameLayout
:
IntArray
static
val
ScrimInsetsFrameLayout_insetForeground
:
Int
static
val
ScrollingViewBehavior_Layout
:
IntArray
static
val
ScrollingViewBehavior_Layout_behavior_overlapTop
:
Int
static
val
SearchView
:
IntArray
static
val
SearchView_android_focusable
:
Int
static
val
SearchView_android_imeOptions
:
Int
static
val
SearchView_android_inputType
:
Int
static
val
SearchView_android_maxWidth
:
Int
static
val
SearchView_closeIcon
:
Int
static
val
SearchView_commitIcon
:
Int
static
val
SearchView_defaultQueryHint
:
Int
static
val
SearchView_goIcon
:
Int
static
val
SearchView_iconifiedByDefault
:
Int
static
val
SearchView_layout
:
Int
static
val
SearchView_queryBackground
:
Int
static
val
SearchView_queryHint
:
Int
static
val
SearchView_searchHintIcon
:
Int
static
val
SearchView_searchIcon
:
Int
static
val
SearchView_submitBackground
:
Int
static
val
SearchView_suggestionRowLayout
:
Int
static
val
SearchView_voiceIcon
:
Int
static
val
Snackbar
:
IntArray
static
val
SnackbarLayout
:
IntArray
static
val
SnackbarLayout_android_maxWidth
:
Int
static
val
SnackbarLayout_elevation
:
Int
static
val
SnackbarLayout_maxActionInlineWidth
:
Int
static
val
Snackbar_snackbarButtonStyle
:
Int
static
val
Snackbar_snackbarStyle
:
Int
static
val
Spinner
:
IntArray
static
val
Spinner_android_dropDownWidth
:
Int
static
val
Spinner_android_entries
:
Int
static
val
Spinner_android_popupBackground
:
Int
static
val
Spinner_android_prompt
:
Int
static
val
Spinner_popupTheme
:
Int
static
val
StateListDrawable
:
IntArray
static
val
StateListDrawableItem
:
IntArray
static
val
StateListDrawableItem_android_drawable
:
Int
static
val
StateListDrawable_android_constantSize
:
Int
static
val
StateListDrawable_android_dither
:
Int
static
val
StateListDrawable_android_enterFadeDuration
:
Int
static
val
StateListDrawable_android_exitFadeDuration
:
Int
static
val
StateListDrawable_android_variablePadding
:
Int
static
val
StateListDrawable_android_visible
:
Int
static
val
SwitchCompat
:
IntArray
static
val
SwitchCompat_android_textOff
:
Int
static
val
SwitchCompat_android_textOn
:
Int
static
val
SwitchCompat_android_thumb
:
Int
static
val
SwitchCompat_showText
:
Int
static
val
SwitchCompat_splitTrack
:
Int
static
val
SwitchCompat_switchMinWidth
:
Int
static
val
SwitchCompat_switchPadding
:
Int
static
val
SwitchCompat_switchTextAppearance
:
Int
static
val
SwitchCompat_thumbTextPadding
:
Int
static
val
SwitchCompat_thumbTint
:
Int
static
val
SwitchCompat_thumbTintMode
:
Int
static
val
SwitchCompat_track
:
Int
static
val
SwitchCompat_trackTint
:
Int
static
val
SwitchCompat_trackTintMode
:
Int
static
val
TabItem
:
IntArray
static
val
TabItem_android_icon
:
Int
static
val
TabItem_android_layout
:
Int
static
val
TabItem_android_text
:
Int
static
val
TabLayout
:
IntArray
static
val
TabLayout_tabBackground
:
Int
static
val
TabLayout_tabContentStart
:
Int
static
val
TabLayout_tabGravity
:
Int
static
val
TabLayout_tabIconTint
:
Int
static
val
TabLayout_tabIconTintMode
:
Int
static
val
TabLayout_tabIndicator
:
Int
static
val
TabLayout_tabIndicatorAnimationDuration
:
Int
static
val
TabLayout_tabIndicatorColor
:
Int
static
val
TabLayout_tabIndicatorFullWidth
:
Int
static
val
TabLayout_tabIndicatorGravity
:
Int
static
val
TabLayout_tabIndicatorHeight
:
Int
static
val
TabLayout_tabInlineLabel
:
Int
static
val
TabLayout_tabMaxWidth
:
Int
static
val
TabLayout_tabMinWidth
:
Int
static
val
TabLayout_tabMode
:
Int
static
val
TabLayout_tabPadding
:
Int
static
val
TabLayout_tabPaddingBottom
:
Int
static
val
TabLayout_tabPaddingEnd
:
Int
static
val
TabLayout_tabPaddingStart
:
Int
static
val
TabLayout_tabPaddingTop
:
Int
static
val
TabLayout_tabRippleColor
:
Int
static
val
TabLayout_tabSelectedTextColor
:
Int
static
val
TabLayout_tabTextAppearance
:
Int
static
val
TabLayout_tabTextColor
:
Int
static
val
TabLayout_tabUnboundedRipple
:
Int
static
val
TextAppearance
:
IntArray
static
val
TextAppearance_android_fontFamily
:
Int
static
val
TextAppearance_android_shadowColor
:
Int
static
val
TextAppearance_android_shadowDx
:
Int
static
val
TextAppearance_android_shadowDy
:
Int
static
val
TextAppearance_android_shadowRadius
:
Int
static
val
TextAppearance_android_textColor
:
Int
static
val
TextAppearance_android_textColorHint
:
Int
static
val
TextAppearance_android_textColorLink
:
Int
static
val
TextAppearance_android_textSize
:
Int
static
val
TextAppearance_android_textStyle
:
Int
static
val
TextAppearance_android_typeface
:
Int
static
val
TextAppearance_fontFamily
:
Int
static
val
TextAppearance_textAllCaps
:
Int
static
val
TextInputLayout
:
IntArray
static
val
TextInputLayout_android_hint
:
Int
static
val
TextInputLayout_android_textColorHint
:
Int
static
val
TextInputLayout_boxBackgroundColor
:
Int
static
val
TextInputLayout_boxBackgroundMode
:
Int
static
val
TextInputLayout_boxCollapsedPaddingTop
:
Int
static
val
TextInputLayout_boxCornerRadiusBottomEnd
:
Int
static
val
TextInputLayout_boxCornerRadiusBottomStart
:
Int
static
val
TextInputLayout_boxCornerRadiusTopEnd
:
Int
static
val
TextInputLayout_boxCornerRadiusTopStart
:
Int
static
val
TextInputLayout_boxStrokeColor
:
Int
static
val
TextInputLayout_boxStrokeWidth
:
Int
static
val
TextInputLayout_counterEnabled
:
Int
static
val
TextInputLayout_counterMaxLength
:
Int
static
val
TextInputLayout_counterOverflowTextAppearance
:
Int
static
val
TextInputLayout_counterTextAppearance
:
Int
static
val
TextInputLayout_errorEnabled
:
Int
static
val
TextInputLayout_errorTextAppearance
:
Int
static
val
TextInputLayout_helperText
:
Int
static
val
TextInputLayout_helperTextEnabled
:
Int
static
val
TextInputLayout_helperTextTextAppearance
:
Int
static
val
TextInputLayout_hintAnimationEnabled
:
Int
static
val
TextInputLayout_hintEnabled
:
Int
static
val
TextInputLayout_hintTextAppearance
:
Int
static
val
TextInputLayout_passwordToggleContentDescription
:
Int
static
val
TextInputLayout_passwordToggleDrawable
:
Int
static
val
TextInputLayout_passwordToggleEnabled
:
Int
static
val
TextInputLayout_passwordToggleTint
:
Int
static
val
TextInputLayout_passwordToggleTintMode
:
Int
static
val
ThemeEnforcement
:
IntArray
static
val
ThemeEnforcement_android_textAppearance
:
Int
static
val
ThemeEnforcement_enforceMaterialTheme
:
Int
static
val
ThemeEnforcement_enforceTextAppearance
:
Int
static
val
Toolbar
:
IntArray
static
val
Toolbar_android_gravity
:
Int
static
val
Toolbar_android_minHeight
:
Int
static
val
Toolbar_buttonGravity
:
Int
static
val
Toolbar_collapseContentDescription
:
Int
static
val
Toolbar_collapseIcon
:
Int
static
val
Toolbar_contentInsetEnd
:
Int
static
val
Toolbar_contentInsetEndWithActions
:
Int
static
val
Toolbar_contentInsetLeft
:
Int
static
val
Toolbar_contentInsetRight
:
Int
static
val
Toolbar_contentInsetStart
:
Int
static
val
Toolbar_contentInsetStartWithNavigation
:
Int
static
val
Toolbar_logo
:
Int
static
val
Toolbar_logoDescription
:
Int
static
val
Toolbar_maxButtonHeight
:
Int
static
val
Toolbar_navigationContentDescription
:
Int
static
val
Toolbar_navigationIcon
:
Int
static
val
Toolbar_popupTheme
:
Int
static
val
Toolbar_subtitle
:
Int
static
val
Toolbar_subtitleTextAppearance
:
Int
static
val
Toolbar_subtitleTextColor
:
Int
static
val
Toolbar_title
:
Int
static
val
Toolbar_titleMargin
:
Int
static
val
Toolbar_titleMarginBottom
:
Int
static
val
Toolbar_titleMarginEnd
:
Int
static
val
Toolbar_titleMarginStart
:
Int
static
val
Toolbar_titleMarginTop
:
Int
static
val
Toolbar_titleMargins
:
Int
static
val
Toolbar_titleTextAppearance
:
Int
static
val
Toolbar_titleTextColor
:
Int
static
val
View
:
IntArray
static
val
ViewBackgroundHelper
:
IntArray
static
val
ViewBackgroundHelper_android_background
:
Int
static
val
ViewBackgroundHelper_backgroundTint
:
Int
static
val
ViewBackgroundHelper_backgroundTintMode
:
Int
static
val
ViewStubCompat
:
IntArray
static
val
ViewStubCompat_android_id
:
Int
static
val
ViewStubCompat_android_inflatedId
:
Int
static
val
ViewStubCompat_android_layout
:
Int
static
val
View_android_focusable
:
Int
static
val
View_android_theme
:
Int
static
val
View_paddingEnd
:
Int
static
val
View_paddingStart
:
Int
static
val
View_theme
:
Int
class
R
class
R
class
R
Module Contents
class
attr
Module Contents
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontWeight
:
Int
class
bool
Module Contents
static
val
abc_action_bar_embed_tabs
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontWeight
:
Int
class
bool
Module Contents
static
val
abc_action_bar_embed_tabs
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
class
R
class
R
class
R
class
R
class
R
class
R
class
R
class
R
class
R
class
R
class
R
class
R
class
R
Module Contents
class
attr
Module Contents
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontWeight
:
Int
class
bool
Module Contents
static
val
abc_action_bar_embed_tabs
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontWeight
:
Int
class
bool
Module Contents
static
val
abc_action_bar_embed_tabs
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontWeight
:
Int
class
bool
Module Contents
static
val
abc_action_bar_embed_tabs
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontWeight
:
Int
class
bool
Module Contents
static
val
abc_action_bar_embed_tabs
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
barrierAllowsGoneWidgets
:
Int
static
val
barrierDirection
:
Int
static
val
chainUseRtl
:
Int
static
val
constraintSet
:
Int
static
val
constraint_referenced_ids
:
Int
static
val
content
:
Int
static
val
emptyVisibility
:
Int
static
val
layout_constrainedHeight
:
Int
static
val
layout_constrainedWidth
:
Int
static
val
layout_constraintBaseline_creator
:
Int
static
val
layout_constraintBaseline_toBaselineOf
:
Int
static
val
layout_constraintBottom_creator
:
Int
static
val
layout_constraintBottom_toBottomOf
:
Int
static
val
layout_constraintBottom_toTopOf
:
Int
static
val
layout_constraintCircle
:
Int
static
val
layout_constraintCircleAngle
:
Int
static
val
layout_constraintCircleRadius
:
Int
static
val
layout_constraintDimensionRatio
:
Int
static
val
layout_constraintEnd_toEndOf
:
Int
static
val
layout_constraintEnd_toStartOf
:
Int
static
val
layout_constraintGuide_begin
:
Int
static
val
layout_constraintGuide_end
:
Int
static
val
layout_constraintGuide_percent
:
Int
static
val
layout_constraintHeight_default
:
Int
static
val
layout_constraintHeight_max
:
Int
static
val
layout_constraintHeight_min
:
Int
static
val
layout_constraintHeight_percent
:
Int
static
val
layout_constraintHorizontal_bias
:
Int
static
val
layout_constraintHorizontal_chainStyle
:
Int
static
val
layout_constraintHorizontal_weight
:
Int
static
val
layout_constraintLeft_creator
:
Int
static
val
layout_constraintLeft_toLeftOf
:
Int
static
val
layout_constraintLeft_toRightOf
:
Int
static
val
layout_constraintRight_creator
:
Int
static
val
layout_constraintRight_toLeftOf
:
Int
static
val
layout_constraintRight_toRightOf
:
Int
static
val
layout_constraintStart_toEndOf
:
Int
static
val
layout_constraintStart_toStartOf
:
Int
static
val
layout_constraintTop_creator
:
Int
static
val
layout_constraintTop_toBottomOf
:
Int
static
val
layout_constraintTop_toTopOf
:
Int
static
val
layout_constraintVertical_bias
:
Int
static
val
layout_constraintVertical_chainStyle
:
Int
static
val
layout_constraintVertical_weight
:
Int
static
val
layout_constraintWidth_default
:
Int
static
val
layout_constraintWidth_max
:
Int
static
val
layout_constraintWidth_min
:
Int
static
val
layout_constraintWidth_percent
:
Int
static
val
layout_editor_absoluteX
:
Int
static
val
layout_editor_absoluteY
:
Int
static
val
layout_goneMarginBottom
:
Int
static
val
layout_goneMarginEnd
:
Int
static
val
layout_goneMarginLeft
:
Int
static
val
layout_goneMarginRight
:
Int
static
val
layout_goneMarginStart
:
Int
static
val
layout_goneMarginTop
:
Int
static
val
layout_optimizationLevel
:
Int
class
id
Module Contents
static
val
bottom
:
Int
static
val
end
:
Int
static
val
gone
:
Int
static
val
invisible
:
Int
static
val
left
:
Int
static
val
packed
:
Int
static
val
parent
:
Int
static
val
percent
:
Int
static
val
right
:
Int
static
val
spread
:
Int
static
val
spread_inside
:
Int
static
val
start
:
Int
static
val
top
:
Int
static
val
wrap
:
Int
class
styleable
Module Contents
static
val
ConstraintLayout_Layout
:
IntArray
static
val
ConstraintLayout_Layout_android_maxHeight
:
Int
static
val
ConstraintLayout_Layout_android_maxWidth
:
Int
static
val
ConstraintLayout_Layout_android_minHeight
:
Int
static
val
ConstraintLayout_Layout_android_minWidth
:
Int
static
val
ConstraintLayout_Layout_android_orientation
:
Int
static
val
ConstraintLayout_Layout_barrierAllowsGoneWidgets
:
Int
static
val
ConstraintLayout_Layout_barrierDirection
:
Int
static
val
ConstraintLayout_Layout_chainUseRtl
:
Int
static
val
ConstraintLayout_Layout_constraintSet
:
Int
static
val
ConstraintLayout_Layout_constraint_referenced_ids
:
Int
static
val
ConstraintLayout_Layout_layout_constrainedHeight
:
Int
static
val
ConstraintLayout_Layout_layout_constrainedWidth
:
Int
static
val
ConstraintLayout_Layout_layout_constraintBaseline_creator
:
Int
static
val
ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintBottom_creator
:
Int
static
val
ConstraintLayout_Layout_layout_constraintBottom_toBottomOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintBottom_toTopOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintCircle
:
Int
static
val
ConstraintLayout_Layout_layout_constraintCircleAngle
:
Int
static
val
ConstraintLayout_Layout_layout_constraintCircleRadius
:
Int
static
val
ConstraintLayout_Layout_layout_constraintDimensionRatio
:
Int
static
val
ConstraintLayout_Layout_layout_constraintEnd_toEndOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintEnd_toStartOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintGuide_begin
:
Int
static
val
ConstraintLayout_Layout_layout_constraintGuide_end
:
Int
static
val
ConstraintLayout_Layout_layout_constraintGuide_percent
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHeight_default
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHeight_max
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHeight_min
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHeight_percent
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHorizontal_bias
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHorizontal_weight
:
Int
static
val
ConstraintLayout_Layout_layout_constraintLeft_creator
:
Int
static
val
ConstraintLayout_Layout_layout_constraintLeft_toLeftOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintLeft_toRightOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintRight_creator
:
Int
static
val
ConstraintLayout_Layout_layout_constraintRight_toLeftOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintRight_toRightOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintStart_toEndOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintStart_toStartOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintTop_creator
:
Int
static
val
ConstraintLayout_Layout_layout_constraintTop_toBottomOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintTop_toTopOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintVertical_bias
:
Int
static
val
ConstraintLayout_Layout_layout_constraintVertical_chainStyle
:
Int
static
val
ConstraintLayout_Layout_layout_constraintVertical_weight
:
Int
static
val
ConstraintLayout_Layout_layout_constraintWidth_default
:
Int
static
val
ConstraintLayout_Layout_layout_constraintWidth_max
:
Int
static
val
ConstraintLayout_Layout_layout_constraintWidth_min
:
Int
static
val
ConstraintLayout_Layout_layout_constraintWidth_percent
:
Int
static
val
ConstraintLayout_Layout_layout_editor_absoluteX
:
Int
static
val
ConstraintLayout_Layout_layout_editor_absoluteY
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginBottom
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginEnd
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginLeft
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginRight
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginStart
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginTop
:
Int
static
val
ConstraintLayout_Layout_layout_optimizationLevel
:
Int
static
val
ConstraintLayout_placeholder
:
IntArray
static
val
ConstraintLayout_placeholder_content
:
Int
static
val
ConstraintLayout_placeholder_emptyVisibility
:
Int
static
val
ConstraintSet
:
IntArray
static
val
ConstraintSet_android_alpha
:
Int
static
val
ConstraintSet_android_elevation
:
Int
static
val
ConstraintSet_android_id
:
Int
static
val
ConstraintSet_android_layout_height
:
Int
static
val
ConstraintSet_android_layout_marginBottom
:
Int
static
val
ConstraintSet_android_layout_marginEnd
:
Int
static
val
ConstraintSet_android_layout_marginLeft
:
Int
static
val
ConstraintSet_android_layout_marginRight
:
Int
static
val
ConstraintSet_android_layout_marginStart
:
Int
static
val
ConstraintSet_android_layout_marginTop
:
Int
static
val
ConstraintSet_android_layout_width
:
Int
static
val
ConstraintSet_android_maxHeight
:
Int
static
val
ConstraintSet_android_maxWidth
:
Int
static
val
ConstraintSet_android_minHeight
:
Int
static
val
ConstraintSet_android_minWidth
:
Int
static
val
ConstraintSet_android_orientation
:
Int
static
val
ConstraintSet_android_rotation
:
Int
static
val
ConstraintSet_android_rotationX
:
Int
static
val
ConstraintSet_android_rotationY
:
Int
static
val
ConstraintSet_android_scaleX
:
Int
static
val
ConstraintSet_android_scaleY
:
Int
static
val
ConstraintSet_android_transformPivotX
:
Int
static
val
ConstraintSet_android_transformPivotY
:
Int
static
val
ConstraintSet_android_translationX
:
Int
static
val
ConstraintSet_android_translationY
:
Int
static
val
ConstraintSet_android_translationZ
:
Int
static
val
ConstraintSet_android_visibility
:
Int
static
val
ConstraintSet_barrierAllowsGoneWidgets
:
Int
static
val
ConstraintSet_barrierDirection
:
Int
static
val
ConstraintSet_chainUseRtl
:
Int
static
val
ConstraintSet_constraint_referenced_ids
:
Int
static
val
ConstraintSet_layout_constrainedHeight
:
Int
static
val
ConstraintSet_layout_constrainedWidth
:
Int
static
val
ConstraintSet_layout_constraintBaseline_creator
:
Int
static
val
ConstraintSet_layout_constraintBaseline_toBaselineOf
:
Int
static
val
ConstraintSet_layout_constraintBottom_creator
:
Int
static
val
ConstraintSet_layout_constraintBottom_toBottomOf
:
Int
static
val
ConstraintSet_layout_constraintBottom_toTopOf
:
Int
static
val
ConstraintSet_layout_constraintCircle
:
Int
static
val
ConstraintSet_layout_constraintCircleAngle
:
Int
static
val
ConstraintSet_layout_constraintCircleRadius
:
Int
static
val
ConstraintSet_layout_constraintDimensionRatio
:
Int
static
val
ConstraintSet_layout_constraintEnd_toEndOf
:
Int
static
val
ConstraintSet_layout_constraintEnd_toStartOf
:
Int
static
val
ConstraintSet_layout_constraintGuide_begin
:
Int
static
val
ConstraintSet_layout_constraintGuide_end
:
Int
static
val
ConstraintSet_layout_constraintGuide_percent
:
Int
static
val
ConstraintSet_layout_constraintHeight_default
:
Int
static
val
ConstraintSet_layout_constraintHeight_max
:
Int
static
val
ConstraintSet_layout_constraintHeight_min
:
Int
static
val
ConstraintSet_layout_constraintHeight_percent
:
Int
static
val
ConstraintSet_layout_constraintHorizontal_bias
:
Int
static
val
ConstraintSet_layout_constraintHorizontal_chainStyle
:
Int
static
val
ConstraintSet_layout_constraintHorizontal_weight
:
Int
static
val
ConstraintSet_layout_constraintLeft_creator
:
Int
static
val
ConstraintSet_layout_constraintLeft_toLeftOf
:
Int
static
val
ConstraintSet_layout_constraintLeft_toRightOf
:
Int
static
val
ConstraintSet_layout_constraintRight_creator
:
Int
static
val
ConstraintSet_layout_constraintRight_toLeftOf
:
Int
static
val
ConstraintSet_layout_constraintRight_toRightOf
:
Int
static
val
ConstraintSet_layout_constraintStart_toEndOf
:
Int
static
val
ConstraintSet_layout_constraintStart_toStartOf
:
Int
static
val
ConstraintSet_layout_constraintTop_creator
:
Int
static
val
ConstraintSet_layout_constraintTop_toBottomOf
:
Int
static
val
ConstraintSet_layout_constraintTop_toTopOf
:
Int
static
val
ConstraintSet_layout_constraintVertical_bias
:
Int
static
val
ConstraintSet_layout_constraintVertical_chainStyle
:
Int
static
val
ConstraintSet_layout_constraintVertical_weight
:
Int
static
val
ConstraintSet_layout_constraintWidth_default
:
Int
static
val
ConstraintSet_layout_constraintWidth_max
:
Int
static
val
ConstraintSet_layout_constraintWidth_min
:
Int
static
val
ConstraintSet_layout_constraintWidth_percent
:
Int
static
val
ConstraintSet_layout_editor_absoluteX
:
Int
static
val
ConstraintSet_layout_editor_absoluteY
:
Int
static
val
ConstraintSet_layout_goneMarginBottom
:
Int
static
val
ConstraintSet_layout_goneMarginEnd
:
Int
static
val
ConstraintSet_layout_goneMarginLeft
:
Int
static
val
ConstraintSet_layout_goneMarginRight
:
Int
static
val
ConstraintSet_layout_goneMarginStart
:
Int
static
val
ConstraintSet_layout_goneMarginTop
:
Int
static
val
LinearConstraintLayout
:
IntArray
static
val
LinearConstraintLayout_android_orientation
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
barrierAllowsGoneWidgets
:
Int
static
val
barrierDirection
:
Int
static
val
chainUseRtl
:
Int
static
val
constraintSet
:
Int
static
val
constraint_referenced_ids
:
Int
static
val
content
:
Int
static
val
emptyVisibility
:
Int
static
val
layout_constrainedHeight
:
Int
static
val
layout_constrainedWidth
:
Int
static
val
layout_constraintBaseline_creator
:
Int
static
val
layout_constraintBaseline_toBaselineOf
:
Int
static
val
layout_constraintBottom_creator
:
Int
static
val
layout_constraintBottom_toBottomOf
:
Int
static
val
layout_constraintBottom_toTopOf
:
Int
static
val
layout_constraintCircle
:
Int
static
val
layout_constraintCircleAngle
:
Int
static
val
layout_constraintCircleRadius
:
Int
static
val
layout_constraintDimensionRatio
:
Int
static
val
layout_constraintEnd_toEndOf
:
Int
static
val
layout_constraintEnd_toStartOf
:
Int
static
val
layout_constraintGuide_begin
:
Int
static
val
layout_constraintGuide_end
:
Int
static
val
layout_constraintGuide_percent
:
Int
static
val
layout_constraintHeight_default
:
Int
static
val
layout_constraintHeight_max
:
Int
static
val
layout_constraintHeight_min
:
Int
static
val
layout_constraintHeight_percent
:
Int
static
val
layout_constraintHorizontal_bias
:
Int
static
val
layout_constraintHorizontal_chainStyle
:
Int
static
val
layout_constraintHorizontal_weight
:
Int
static
val
layout_constraintLeft_creator
:
Int
static
val
layout_constraintLeft_toLeftOf
:
Int
static
val
layout_constraintLeft_toRightOf
:
Int
static
val
layout_constraintRight_creator
:
Int
static
val
layout_constraintRight_toLeftOf
:
Int
static
val
layout_constraintRight_toRightOf
:
Int
static
val
layout_constraintStart_toEndOf
:
Int
static
val
layout_constraintStart_toStartOf
:
Int
static
val
layout_constraintTop_creator
:
Int
static
val
layout_constraintTop_toBottomOf
:
Int
static
val
layout_constraintTop_toTopOf
:
Int
static
val
layout_constraintVertical_bias
:
Int
static
val
layout_constraintVertical_chainStyle
:
Int
static
val
layout_constraintVertical_weight
:
Int
static
val
layout_constraintWidth_default
:
Int
static
val
layout_constraintWidth_max
:
Int
static
val
layout_constraintWidth_min
:
Int
static
val
layout_constraintWidth_percent
:
Int
static
val
layout_editor_absoluteX
:
Int
static
val
layout_editor_absoluteY
:
Int
static
val
layout_goneMarginBottom
:
Int
static
val
layout_goneMarginEnd
:
Int
static
val
layout_goneMarginLeft
:
Int
static
val
layout_goneMarginRight
:
Int
static
val
layout_goneMarginStart
:
Int
static
val
layout_goneMarginTop
:
Int
static
val
layout_optimizationLevel
:
Int
class
id
Module Contents
static
val
bottom
:
Int
static
val
end
:
Int
static
val
gone
:
Int
static
val
invisible
:
Int
static
val
left
:
Int
static
val
packed
:
Int
static
val
parent
:
Int
static
val
percent
:
Int
static
val
right
:
Int
static
val
spread
:
Int
static
val
spread_inside
:
Int
static
val
start
:
Int
static
val
top
:
Int
static
val
wrap
:
Int
class
styleable
Module Contents
static
val
ConstraintLayout_Layout
:
IntArray
static
val
ConstraintLayout_Layout_android_maxHeight
:
Int
static
val
ConstraintLayout_Layout_android_maxWidth
:
Int
static
val
ConstraintLayout_Layout_android_minHeight
:
Int
static
val
ConstraintLayout_Layout_android_minWidth
:
Int
static
val
ConstraintLayout_Layout_android_orientation
:
Int
static
val
ConstraintLayout_Layout_barrierAllowsGoneWidgets
:
Int
static
val
ConstraintLayout_Layout_barrierDirection
:
Int
static
val
ConstraintLayout_Layout_chainUseRtl
:
Int
static
val
ConstraintLayout_Layout_constraintSet
:
Int
static
val
ConstraintLayout_Layout_constraint_referenced_ids
:
Int
static
val
ConstraintLayout_Layout_layout_constrainedHeight
:
Int
static
val
ConstraintLayout_Layout_layout_constrainedWidth
:
Int
static
val
ConstraintLayout_Layout_layout_constraintBaseline_creator
:
Int
static
val
ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintBottom_creator
:
Int
static
val
ConstraintLayout_Layout_layout_constraintBottom_toBottomOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintBottom_toTopOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintCircle
:
Int
static
val
ConstraintLayout_Layout_layout_constraintCircleAngle
:
Int
static
val
ConstraintLayout_Layout_layout_constraintCircleRadius
:
Int
static
val
ConstraintLayout_Layout_layout_constraintDimensionRatio
:
Int
static
val
ConstraintLayout_Layout_layout_constraintEnd_toEndOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintEnd_toStartOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintGuide_begin
:
Int
static
val
ConstraintLayout_Layout_layout_constraintGuide_end
:
Int
static
val
ConstraintLayout_Layout_layout_constraintGuide_percent
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHeight_default
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHeight_max
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHeight_min
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHeight_percent
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHorizontal_bias
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHorizontal_weight
:
Int
static
val
ConstraintLayout_Layout_layout_constraintLeft_creator
:
Int
static
val
ConstraintLayout_Layout_layout_constraintLeft_toLeftOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintLeft_toRightOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintRight_creator
:
Int
static
val
ConstraintLayout_Layout_layout_constraintRight_toLeftOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintRight_toRightOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintStart_toEndOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintStart_toStartOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintTop_creator
:
Int
static
val
ConstraintLayout_Layout_layout_constraintTop_toBottomOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintTop_toTopOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintVertical_bias
:
Int
static
val
ConstraintLayout_Layout_layout_constraintVertical_chainStyle
:
Int
static
val
ConstraintLayout_Layout_layout_constraintVertical_weight
:
Int
static
val
ConstraintLayout_Layout_layout_constraintWidth_default
:
Int
static
val
ConstraintLayout_Layout_layout_constraintWidth_max
:
Int
static
val
ConstraintLayout_Layout_layout_constraintWidth_min
:
Int
static
val
ConstraintLayout_Layout_layout_constraintWidth_percent
:
Int
static
val
ConstraintLayout_Layout_layout_editor_absoluteX
:
Int
static
val
ConstraintLayout_Layout_layout_editor_absoluteY
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginBottom
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginEnd
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginLeft
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginRight
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginStart
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginTop
:
Int
static
val
ConstraintLayout_Layout_layout_optimizationLevel
:
Int
static
val
ConstraintLayout_placeholder
:
IntArray
static
val
ConstraintLayout_placeholder_content
:
Int
static
val
ConstraintLayout_placeholder_emptyVisibility
:
Int
static
val
ConstraintSet
:
IntArray
static
val
ConstraintSet_android_alpha
:
Int
static
val
ConstraintSet_android_elevation
:
Int
static
val
ConstraintSet_android_id
:
Int
static
val
ConstraintSet_android_layout_height
:
Int
static
val
ConstraintSet_android_layout_marginBottom
:
Int
static
val
ConstraintSet_android_layout_marginEnd
:
Int
static
val
ConstraintSet_android_layout_marginLeft
:
Int
static
val
ConstraintSet_android_layout_marginRight
:
Int
static
val
ConstraintSet_android_layout_marginStart
:
Int
static
val
ConstraintSet_android_layout_marginTop
:
Int
static
val
ConstraintSet_android_layout_width
:
Int
static
val
ConstraintSet_android_maxHeight
:
Int
static
val
ConstraintSet_android_maxWidth
:
Int
static
val
ConstraintSet_android_minHeight
:
Int
static
val
ConstraintSet_android_minWidth
:
Int
static
val
ConstraintSet_android_orientation
:
Int
static
val
ConstraintSet_android_rotation
:
Int
static
val
ConstraintSet_android_rotationX
:
Int
static
val
ConstraintSet_android_rotationY
:
Int
static
val
ConstraintSet_android_scaleX
:
Int
static
val
ConstraintSet_android_scaleY
:
Int
static
val
ConstraintSet_android_transformPivotX
:
Int
static
val
ConstraintSet_android_transformPivotY
:
Int
static
val
ConstraintSet_android_translationX
:
Int
static
val
ConstraintSet_android_translationY
:
Int
static
val
ConstraintSet_android_translationZ
:
Int
static
val
ConstraintSet_android_visibility
:
Int
static
val
ConstraintSet_barrierAllowsGoneWidgets
:
Int
static
val
ConstraintSet_barrierDirection
:
Int
static
val
ConstraintSet_chainUseRtl
:
Int
static
val
ConstraintSet_constraint_referenced_ids
:
Int
static
val
ConstraintSet_layout_constrainedHeight
:
Int
static
val
ConstraintSet_layout_constrainedWidth
:
Int
static
val
ConstraintSet_layout_constraintBaseline_creator
:
Int
static
val
ConstraintSet_layout_constraintBaseline_toBaselineOf
:
Int
static
val
ConstraintSet_layout_constraintBottom_creator
:
Int
static
val
ConstraintSet_layout_constraintBottom_toBottomOf
:
Int
static
val
ConstraintSet_layout_constraintBottom_toTopOf
:
Int
static
val
ConstraintSet_layout_constraintCircle
:
Int
static
val
ConstraintSet_layout_constraintCircleAngle
:
Int
static
val
ConstraintSet_layout_constraintCircleRadius
:
Int
static
val
ConstraintSet_layout_constraintDimensionRatio
:
Int
static
val
ConstraintSet_layout_constraintEnd_toEndOf
:
Int
static
val
ConstraintSet_layout_constraintEnd_toStartOf
:
Int
static
val
ConstraintSet_layout_constraintGuide_begin
:
Int
static
val
ConstraintSet_layout_constraintGuide_end
:
Int
static
val
ConstraintSet_layout_constraintGuide_percent
:
Int
static
val
ConstraintSet_layout_constraintHeight_default
:
Int
static
val
ConstraintSet_layout_constraintHeight_max
:
Int
static
val
ConstraintSet_layout_constraintHeight_min
:
Int
static
val
ConstraintSet_layout_constraintHeight_percent
:
Int
static
val
ConstraintSet_layout_constraintHorizontal_bias
:
Int
static
val
ConstraintSet_layout_constraintHorizontal_chainStyle
:
Int
static
val
ConstraintSet_layout_constraintHorizontal_weight
:
Int
static
val
ConstraintSet_layout_constraintLeft_creator
:
Int
static
val
ConstraintSet_layout_constraintLeft_toLeftOf
:
Int
static
val
ConstraintSet_layout_constraintLeft_toRightOf
:
Int
static
val
ConstraintSet_layout_constraintRight_creator
:
Int
static
val
ConstraintSet_layout_constraintRight_toLeftOf
:
Int
static
val
ConstraintSet_layout_constraintRight_toRightOf
:
Int
static
val
ConstraintSet_layout_constraintStart_toEndOf
:
Int
static
val
ConstraintSet_layout_constraintStart_toStartOf
:
Int
static
val
ConstraintSet_layout_constraintTop_creator
:
Int
static
val
ConstraintSet_layout_constraintTop_toBottomOf
:
Int
static
val
ConstraintSet_layout_constraintTop_toTopOf
:
Int
static
val
ConstraintSet_layout_constraintVertical_bias
:
Int
static
val
ConstraintSet_layout_constraintVertical_chainStyle
:
Int
static
val
ConstraintSet_layout_constraintVertical_weight
:
Int
static
val
ConstraintSet_layout_constraintWidth_default
:
Int
static
val
ConstraintSet_layout_constraintWidth_max
:
Int
static
val
ConstraintSet_layout_constraintWidth_min
:
Int
static
val
ConstraintSet_layout_constraintWidth_percent
:
Int
static
val
ConstraintSet_layout_editor_absoluteX
:
Int
static
val
ConstraintSet_layout_editor_absoluteY
:
Int
static
val
ConstraintSet_layout_goneMarginBottom
:
Int
static
val
ConstraintSet_layout_goneMarginEnd
:
Int
static
val
ConstraintSet_layout_goneMarginLeft
:
Int
static
val
ConstraintSet_layout_goneMarginRight
:
Int
static
val
ConstraintSet_layout_goneMarginStart
:
Int
static
val
ConstraintSet_layout_goneMarginTop
:
Int
static
val
LinearConstraintLayout
:
IntArray
static
val
LinearConstraintLayout_android_orientation
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
coordinatorLayoutStyle
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
keylines
:
Int
static
val
layout_anchor
:
Int
static
val
layout_anchorGravity
:
Int
static
val
layout_behavior
:
Int
static
val
layout_dodgeInsetEdges
:
Int
static
val
layout_insetEdge
:
Int
static
val
layout_keyline
:
Int
static
val
statusBarBackground
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
bottom
:
Int
static
val
chronometer
:
Int
static
val
end
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
left
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
none
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
start
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
static
val
top
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
static
val
Widget_Support_CoordinatorLayout
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
CoordinatorLayout
:
IntArray
static
val
CoordinatorLayout_Layout
:
IntArray
static
val
CoordinatorLayout_Layout_android_layout_gravity
:
Int
static
val
CoordinatorLayout_Layout_layout_anchor
:
Int
static
val
CoordinatorLayout_Layout_layout_anchorGravity
:
Int
static
val
CoordinatorLayout_Layout_layout_behavior
:
Int
static
val
CoordinatorLayout_Layout_layout_dodgeInsetEdges
:
Int
static
val
CoordinatorLayout_Layout_layout_insetEdge
:
Int
static
val
CoordinatorLayout_Layout_layout_keyline
:
Int
static
val
CoordinatorLayout_keylines
:
Int
static
val
CoordinatorLayout_statusBarBackground
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
coordinatorLayoutStyle
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
keylines
:
Int
static
val
layout_anchor
:
Int
static
val
layout_anchorGravity
:
Int
static
val
layout_behavior
:
Int
static
val
layout_dodgeInsetEdges
:
Int
static
val
layout_insetEdge
:
Int
static
val
layout_keyline
:
Int
static
val
statusBarBackground
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
bottom
:
Int
static
val
chronometer
:
Int
static
val
end
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
left
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
none
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
start
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
static
val
top
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
static
val
Widget_Support_CoordinatorLayout
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
CoordinatorLayout
:
IntArray
static
val
CoordinatorLayout_Layout
:
IntArray
static
val
CoordinatorLayout_Layout_android_layout_gravity
:
Int
static
val
CoordinatorLayout_Layout_layout_anchor
:
Int
static
val
CoordinatorLayout_Layout_layout_anchorGravity
:
Int
static
val
CoordinatorLayout_Layout_layout_behavior
:
Int
static
val
CoordinatorLayout_Layout_layout_dodgeInsetEdges
:
Int
static
val
CoordinatorLayout_Layout_layout_insetEdge
:
Int
static
val
CoordinatorLayout_Layout_layout_keyline
:
Int
static
val
CoordinatorLayout_keylines
:
Int
static
val
CoordinatorLayout_statusBarBackground
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
coordinatorLayoutStyle
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
keylines
:
Int
static
val
layout_anchor
:
Int
static
val
layout_anchorGravity
:
Int
static
val
layout_behavior
:
Int
static
val
layout_dodgeInsetEdges
:
Int
static
val
layout_insetEdge
:
Int
static
val
layout_keyline
:
Int
static
val
statusBarBackground
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
bottom
:
Int
static
val
chronometer
:
Int
static
val
end
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
left
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
none
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
start
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
static
val
top
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
static
val
Widget_Support_CoordinatorLayout
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
CoordinatorLayout
:
IntArray
static
val
CoordinatorLayout_Layout
:
IntArray
static
val
CoordinatorLayout_Layout_android_layout_gravity
:
Int
static
val
CoordinatorLayout_Layout_layout_anchor
:
Int
static
val
CoordinatorLayout_Layout_layout_anchorGravity
:
Int
static
val
CoordinatorLayout_Layout_layout_behavior
:
Int
static
val
CoordinatorLayout_Layout_layout_dodgeInsetEdges
:
Int
static
val
CoordinatorLayout_Layout_layout_insetEdge
:
Int
static
val
CoordinatorLayout_Layout_layout_keyline
:
Int
static
val
CoordinatorLayout_keylines
:
Int
static
val
CoordinatorLayout_statusBarBackground
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
coordinatorLayoutStyle
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
keylines
:
Int
static
val
layout_anchor
:
Int
static
val
layout_anchorGravity
:
Int
static
val
layout_behavior
:
Int
static
val
layout_dodgeInsetEdges
:
Int
static
val
layout_insetEdge
:
Int
static
val
layout_keyline
:
Int
static
val
statusBarBackground
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
bottom
:
Int
static
val
chronometer
:
Int
static
val
end
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
left
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
none
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
start
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
static
val
top
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
static
val
Widget_Support_CoordinatorLayout
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
CoordinatorLayout
:
IntArray
static
val
CoordinatorLayout_Layout
:
IntArray
static
val
CoordinatorLayout_Layout_android_layout_gravity
:
Int
static
val
CoordinatorLayout_Layout_layout_anchor
:
Int
static
val
CoordinatorLayout_Layout_layout_anchorGravity
:
Int
static
val
CoordinatorLayout_Layout_layout_behavior
:
Int
static
val
CoordinatorLayout_Layout_layout_dodgeInsetEdges
:
Int
static
val
CoordinatorLayout_Layout_layout_insetEdge
:
Int
static
val
CoordinatorLayout_Layout_layout_keyline
:
Int
static
val
CoordinatorLayout_keylines
:
Int
static
val
CoordinatorLayout_statusBarBackground
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
class
R
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
anim
Module Contents
static
val
abc_fade_in
:
Int
static
val
abc_fade_out
:
Int
static
val
abc_grow_fade_in_from_bottom
:
Int
static
val
abc_popup_enter
:
Int
static
val
abc_popup_exit
:
Int
static
val
abc_shrink_fade_out_from_bottom
:
Int
static
val
abc_slide_in_bottom
:
Int
static
val
abc_slide_in_top
:
Int
static
val
abc_slide_out_bottom
:
Int
static
val
abc_slide_out_top
:
Int
static
val
abc_tooltip_enter
:
Int
static
val
abc_tooltip_exit
:
Int
static
val
design_bottom_sheet_slide_in
:
Int
static
val
design_bottom_sheet_slide_out
:
Int
static
val
design_snackbar_in
:
Int
static
val
design_snackbar_out
:
Int
class
animator
Module Contents
static
val
design_appbar_state_list_animator
:
Int
static
val
design_fab_hide_motion_spec
:
Int
static
val
design_fab_show_motion_spec
:
Int
static
val
mtrl_btn_state_list_anim
:
Int
static
val
mtrl_btn_unelevated_state_list_anim
:
Int
static
val
mtrl_chip_state_list_anim
:
Int
static
val
mtrl_fab_hide_motion_spec
:
Int
static
val
mtrl_fab_show_motion_spec
:
Int
static
val
mtrl_fab_transformation_sheet_collapse_spec
:
Int
static
val
mtrl_fab_transformation_sheet_expand_spec
:
Int
class
attr
Module Contents
static
val
actionBarDivider
:
Int
static
val
actionBarItemBackground
:
Int
static
val
actionBarPopupTheme
:
Int
static
val
actionBarSize
:
Int
static
val
actionBarSplitStyle
:
Int
static
val
actionBarStyle
:
Int
static
val
actionBarTabBarStyle
:
Int
static
val
actionBarTabStyle
:
Int
static
val
actionBarTabTextStyle
:
Int
static
val
actionBarTheme
:
Int
static
val
actionBarWidgetTheme
:
Int
static
val
actionButtonStyle
:
Int
static
val
actionDropDownStyle
:
Int
static
val
actionLayout
:
Int
static
val
actionMenuTextAppearance
:
Int
static
val
actionMenuTextColor
:
Int
static
val
actionModeBackground
:
Int
static
val
actionModeCloseButtonStyle
:
Int
static
val
actionModeCloseDrawable
:
Int
static
val
actionModeCopyDrawable
:
Int
static
val
actionModeCutDrawable
:
Int
static
val
actionModeFindDrawable
:
Int
static
val
actionModePasteDrawable
:
Int
static
val
actionModePopupWindowStyle
:
Int
static
val
actionModeSelectAllDrawable
:
Int
static
val
actionModeShareDrawable
:
Int
static
val
actionModeSplitBackground
:
Int
static
val
actionModeStyle
:
Int
static
val
actionModeWebSearchDrawable
:
Int
static
val
actionOverflowButtonStyle
:
Int
static
val
actionOverflowMenuStyle
:
Int
static
val
actionProviderClass
:
Int
static
val
actionViewClass
:
Int
static
val
activityChooserViewStyle
:
Int
static
val
alertDialogButtonGroupStyle
:
Int
static
val
alertDialogCenterButtons
:
Int
static
val
alertDialogStyle
:
Int
static
val
alertDialogTheme
:
Int
static
val
allowStacking
:
Int
static
val
alpha
:
Int
static
val
alphabeticModifiers
:
Int
static
val
arrowHeadLength
:
Int
static
val
arrowShaftLength
:
Int
static
val
autoCompleteTextViewStyle
:
Int
static
val
autoSizeMaxTextSize
:
Int
static
val
autoSizeMinTextSize
:
Int
static
val
autoSizePresetSizes
:
Int
static
val
autoSizeStepGranularity
:
Int
static
val
autoSizeTextType
:
Int
static
val
background
:
Int
static
val
backgroundSplit
:
Int
static
val
backgroundStacked
:
Int
static
val
backgroundTint
:
Int
static
val
backgroundTintMode
:
Int
static
val
barLength
:
Int
static
val
behavior_autoHide
:
Int
static
val
behavior_fitToContents
:
Int
static
val
behavior_hideable
:
Int
static
val
behavior_overlapTop
:
Int
static
val
behavior_peekHeight
:
Int
static
val
behavior_skipCollapsed
:
Int
static
val
borderWidth
:
Int
static
val
borderlessButtonStyle
:
Int
static
val
bottomAppBarStyle
:
Int
static
val
bottomNavigationStyle
:
Int
static
val
bottomSheetDialogTheme
:
Int
static
val
bottomSheetStyle
:
Int
static
val
boxBackgroundColor
:
Int
static
val
boxBackgroundMode
:
Int
static
val
boxCollapsedPaddingTop
:
Int
static
val
boxCornerRadiusBottomEnd
:
Int
static
val
boxCornerRadiusBottomStart
:
Int
static
val
boxCornerRadiusTopEnd
:
Int
static
val
boxCornerRadiusTopStart
:
Int
static
val
boxStrokeColor
:
Int
static
val
boxStrokeWidth
:
Int
static
val
buttonBarButtonStyle
:
Int
static
val
buttonBarNegativeButtonStyle
:
Int
static
val
buttonBarNeutralButtonStyle
:
Int
static
val
buttonBarPositiveButtonStyle
:
Int
static
val
buttonBarStyle
:
Int
static
val
buttonGravity
:
Int
static
val
buttonIconDimen
:
Int
static
val
buttonPanelSideLayout
:
Int
static
val
buttonStyle
:
Int
static
val
buttonStyleSmall
:
Int
static
val
buttonTint
:
Int
static
val
buttonTintMode
:
Int
static
val
cardBackgroundColor
:
Int
static
val
cardCornerRadius
:
Int
static
val
cardElevation
:
Int
static
val
cardMaxElevation
:
Int
static
val
cardPreventCornerOverlap
:
Int
static
val
cardUseCompatPadding
:
Int
static
val
cardViewStyle
:
Int
static
val
checkboxStyle
:
Int
static
val
checkedChip
:
Int
static
val
checkedIcon
:
Int
static
val
checkedIconEnabled
:
Int
static
val
checkedIconVisible
:
Int
static
val
checkedTextViewStyle
:
Int
static
val
chipBackgroundColor
:
Int
static
val
chipCornerRadius
:
Int
static
val
chipEndPadding
:
Int
static
val
chipGroupStyle
:
Int
static
val
chipIcon
:
Int
static
val
chipIconEnabled
:
Int
static
val
chipIconSize
:
Int
static
val
chipIconTint
:
Int
static
val
chipIconVisible
:
Int
static
val
chipMinHeight
:
Int
static
val
chipSpacing
:
Int
static
val
chipSpacingHorizontal
:
Int
static
val
chipSpacingVertical
:
Int
static
val
chipStandaloneStyle
:
Int
static
val
chipStartPadding
:
Int
static
val
chipStrokeColor
:
Int
static
val
chipStrokeWidth
:
Int
static
val
chipStyle
:
Int
static
val
closeIcon
:
Int
static
val
closeIconEnabled
:
Int
static
val
closeIconEndPadding
:
Int
static
val
closeIconSize
:
Int
static
val
closeIconStartPadding
:
Int
static
val
closeIconTint
:
Int
static
val
closeIconVisible
:
Int
static
val
closeItemLayout
:
Int
static
val
collapseContentDescription
:
Int
static
val
collapseIcon
:
Int
static
val
collapsedTitleGravity
:
Int
static
val
collapsedTitleTextAppearance
:
Int
static
val
color
:
Int
static
val
colorAccent
:
Int
static
val
colorBackgroundFloating
:
Int
static
val
colorButtonNormal
:
Int
static
val
colorControlActivated
:
Int
static
val
colorControlHighlight
:
Int
static
val
colorControlNormal
:
Int
static
val
colorError
:
Int
static
val
colorPrimary
:
Int
static
val
colorPrimaryDark
:
Int
static
val
colorSecondary
:
Int
static
val
colorSwitchThumbNormal
:
Int
static
val
commitIcon
:
Int
static
val
contentDescription
:
Int
static
val
contentInsetEnd
:
Int
static
val
contentInsetEndWithActions
:
Int
static
val
contentInsetLeft
:
Int
static
val
contentInsetRight
:
Int
static
val
contentInsetStart
:
Int
static
val
contentInsetStartWithNavigation
:
Int
static
val
contentPadding
:
Int
static
val
contentPaddingBottom
:
Int
static
val
contentPaddingLeft
:
Int
static
val
contentPaddingRight
:
Int
static
val
contentPaddingTop
:
Int
static
val
contentScrim
:
Int
static
val
controlBackground
:
Int
static
val
coordinatorLayoutStyle
:
Int
static
val
cornerRadius
:
Int
static
val
counterEnabled
:
Int
static
val
counterMaxLength
:
Int
static
val
counterOverflowTextAppearance
:
Int
static
val
counterTextAppearance
:
Int
static
val
customNavigationLayout
:
Int
static
val
defaultQueryHint
:
Int
static
val
dialogCornerRadius
:
Int
static
val
dialogPreferredPadding
:
Int
static
val
dialogTheme
:
Int
static
val
displayOptions
:
Int
static
val
divider
:
Int
static
val
dividerHorizontal
:
Int
static
val
dividerPadding
:
Int
static
val
dividerVertical
:
Int
static
val
drawableSize
:
Int
static
val
drawerArrowStyle
:
Int
static
val
dropDownListViewStyle
:
Int
static
val
dropdownListPreferredItemHeight
:
Int
static
val
editTextBackground
:
Int
static
val
editTextColor
:
Int
static
val
editTextStyle
:
Int
static
val
elevation
:
Int
static
val
enforceMaterialTheme
:
Int
static
val
enforceTextAppearance
:
Int
static
val
errorEnabled
:
Int
static
val
errorTextAppearance
:
Int
static
val
expandActivityOverflowButtonDrawable
:
Int
static
val
expanded
:
Int
static
val
expandedTitleGravity
:
Int
static
val
expandedTitleMargin
:
Int
static
val
expandedTitleMarginBottom
:
Int
static
val
expandedTitleMarginEnd
:
Int
static
val
expandedTitleMarginStart
:
Int
static
val
expandedTitleMarginTop
:
Int
static
val
expandedTitleTextAppearance
:
Int
static
val
fabAlignmentMode
:
Int
static
val
fabCradleMargin
:
Int
static
val
fabCradleRoundedCornerRadius
:
Int
static
val
fabCradleVerticalOffset
:
Int
static
val
fabCustomSize
:
Int
static
val
fabSize
:
Int
static
val
fastScrollEnabled
:
Int
static
val
fastScrollHorizontalThumbDrawable
:
Int
static
val
fastScrollHorizontalTrackDrawable
:
Int
static
val
fastScrollVerticalThumbDrawable
:
Int
static
val
fastScrollVerticalTrackDrawable
:
Int
static
val
firstBaselineToTopHeight
:
Int
static
val
floatingActionButtonStyle
:
Int
static
val
font
:
Int
static
val
fontFamily
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
foregroundInsidePadding
:
Int
static
val
gapBetweenBars
:
Int
static
val
goIcon
:
Int
static
val
headerLayout
:
Int
static
val
height
:
Int
static
val
helperText
:
Int
static
val
helperTextEnabled
:
Int
static
val
helperTextTextAppearance
:
Int
static
val
hideMotionSpec
:
Int
static
val
hideOnContentScroll
:
Int
static
val
hideOnScroll
:
Int
static
val
hintAnimationEnabled
:
Int
static
val
hintEnabled
:
Int
static
val
hintTextAppearance
:
Int
static
val
homeAsUpIndicator
:
Int
static
val
homeLayout
:
Int
static
val
hoveredFocusedTranslationZ
:
Int
static
val
icon
:
Int
static
val
iconEndPadding
:
Int
static
val
iconGravity
:
Int
static
val
iconPadding
:
Int
static
val
iconSize
:
Int
static
val
iconStartPadding
:
Int
static
val
iconTint
:
Int
static
val
iconTintMode
:
Int
static
val
iconifiedByDefault
:
Int
static
val
imageButtonStyle
:
Int
static
val
indeterminateProgressStyle
:
Int
static
val
initialActivityCount
:
Int
static
val
insetForeground
:
Int
static
val
isLightTheme
:
Int
static
val
itemBackground
:
Int
static
val
itemHorizontalPadding
:
Int
static
val
itemHorizontalTranslationEnabled
:
Int
static
val
itemIconPadding
:
Int
static
val
itemIconSize
:
Int
static
val
itemIconTint
:
Int
static
val
itemPadding
:
Int
static
val
itemSpacing
:
Int
static
val
itemTextAppearance
:
Int
static
val
itemTextAppearanceActive
:
Int
static
val
itemTextAppearanceInactive
:
Int
static
val
itemTextColor
:
Int
static
val
keylines
:
Int
static
val
labelVisibilityMode
:
Int
static
val
lastBaselineToBottomHeight
:
Int
static
val
layout
:
Int
static
val
layoutManager
:
Int
static
val
layout_anchor
:
Int
static
val
layout_anchorGravity
:
Int
static
val
layout_behavior
:
Int
static
val
layout_collapseMode
:
Int
static
val
layout_collapseParallaxMultiplier
:
Int
static
val
layout_dodgeInsetEdges
:
Int
static
val
layout_insetEdge
:
Int
static
val
layout_keyline
:
Int
static
val
layout_scrollFlags
:
Int
static
val
layout_scrollInterpolator
:
Int
static
val
liftOnScroll
:
Int
static
val
lineHeight
:
Int
static
val
lineSpacing
:
Int
static
val
listChoiceBackgroundIndicator
:
Int
static
val
listDividerAlertDialog
:
Int
static
val
listItemLayout
:
Int
static
val
listLayout
:
Int
static
val
listMenuViewStyle
:
Int
static
val
listPopupWindowStyle
:
Int
static
val
listPreferredItemHeight
:
Int
static
val
listPreferredItemHeightLarge
:
Int
static
val
listPreferredItemHeightSmall
:
Int
static
val
listPreferredItemPaddingLeft
:
Int
static
val
listPreferredItemPaddingRight
:
Int
static
val
logo
:
Int
static
val
logoDescription
:
Int
static
val
materialButtonStyle
:
Int
static
val
materialCardViewStyle
:
Int
static
val
maxActionInlineWidth
:
Int
static
val
maxButtonHeight
:
Int
static
val
maxImageSize
:
Int
static
val
measureWithLargestChild
:
Int
static
val
menu
:
Int
static
val
multiChoiceItemLayout
:
Int
static
val
navigationContentDescription
:
Int
static
val
navigationIcon
:
Int
static
val
navigationMode
:
Int
static
val
navigationViewStyle
:
Int
static
val
numericModifiers
:
Int
static
val
overlapAnchor
:
Int
static
val
paddingBottomNoButtons
:
Int
static
val
paddingEnd
:
Int
static
val
paddingStart
:
Int
static
val
paddingTopNoTitle
:
Int
static
val
panelBackground
:
Int
static
val
panelMenuListTheme
:
Int
static
val
panelMenuListWidth
:
Int
static
val
passwordToggleContentDescription
:
Int
static
val
passwordToggleDrawable
:
Int
static
val
passwordToggleEnabled
:
Int
static
val
passwordToggleTint
:
Int
static
val
passwordToggleTintMode
:
Int
static
val
popupMenuStyle
:
Int
static
val
popupTheme
:
Int
static
val
popupWindowStyle
:
Int
static
val
preserveIconSpacing
:
Int
static
val
pressedTranslationZ
:
Int
static
val
progressBarPadding
:
Int
static
val
progressBarStyle
:
Int
static
val
queryBackground
:
Int
static
val
queryHint
:
Int
static
val
radioButtonStyle
:
Int
static
val
ratingBarStyle
:
Int
static
val
ratingBarStyleIndicator
:
Int
static
val
ratingBarStyleSmall
:
Int
static
val
reverseLayout
:
Int
static
val
rippleColor
:
Int
static
val
scrimAnimationDuration
:
Int
static
val
scrimBackground
:
Int
static
val
scrimVisibleHeightTrigger
:
Int
static
val
searchHintIcon
:
Int
static
val
searchIcon
:
Int
static
val
searchViewStyle
:
Int
static
val
seekBarStyle
:
Int
static
val
selectableItemBackground
:
Int
static
val
selectableItemBackgroundBorderless
:
Int
static
val
showAsAction
:
Int
static
val
showDividers
:
Int
static
val
showMotionSpec
:
Int
static
val
showText
:
Int
static
val
showTitle
:
Int
static
val
singleChoiceItemLayout
:
Int
static
val
singleLine
:
Int
static
val
singleSelection
:
Int
static
val
snackbarButtonStyle
:
Int
static
val
snackbarStyle
:
Int
static
val
spanCount
:
Int
static
val
spinBars
:
Int
static
val
spinnerDropDownItemStyle
:
Int
static
val
spinnerStyle
:
Int
static
val
splitTrack
:
Int
static
val
srcCompat
:
Int
static
val
stackFromEnd
:
Int
static
val
state_above_anchor
:
Int
static
val
state_collapsed
:
Int
static
val
state_collapsible
:
Int
static
val
state_liftable
:
Int
static
val
state_lifted
:
Int
static
val
statusBarBackground
:
Int
static
val
statusBarScrim
:
Int
static
val
strokeColor
:
Int
static
val
strokeWidth
:
Int
static
val
subMenuArrow
:
Int
static
val
submitBackground
:
Int
static
val
subtitle
:
Int
static
val
subtitleTextAppearance
:
Int
static
val
subtitleTextColor
:
Int
static
val
subtitleTextStyle
:
Int
static
val
suggestionRowLayout
:
Int
static
val
switchMinWidth
:
Int
static
val
switchPadding
:
Int
static
val
switchStyle
:
Int
static
val
switchTextAppearance
:
Int
static
val
tabBackground
:
Int
static
val
tabContentStart
:
Int
static
val
tabGravity
:
Int
static
val
tabIconTint
:
Int
static
val
tabIconTintMode
:
Int
static
val
tabIndicator
:
Int
static
val
tabIndicatorAnimationDuration
:
Int
static
val
tabIndicatorColor
:
Int
static
val
tabIndicatorFullWidth
:
Int
static
val
tabIndicatorGravity
:
Int
static
val
tabIndicatorHeight
:
Int
static
val
tabInlineLabel
:
Int
static
val
tabMaxWidth
:
Int
static
val
tabMinWidth
:
Int
static
val
tabMode
:
Int
static
val
tabPadding
:
Int
static
val
tabPaddingBottom
:
Int
static
val
tabPaddingEnd
:
Int
static
val
tabPaddingStart
:
Int
static
val
tabPaddingTop
:
Int
static
val
tabRippleColor
:
Int
static
val
tabSelectedTextColor
:
Int
static
val
tabStyle
:
Int
static
val
tabTextAppearance
:
Int
static
val
tabTextColor
:
Int
static
val
tabUnboundedRipple
:
Int
static
val
textAllCaps
:
Int
static
val
textAppearanceBody1
:
Int
static
val
textAppearanceBody2
:
Int
static
val
textAppearanceButton
:
Int
static
val
textAppearanceCaption
:
Int
static
val
textAppearanceHeadline1
:
Int
static
val
textAppearanceHeadline2
:
Int
static
val
textAppearanceHeadline3
:
Int
static
val
textAppearanceHeadline4
:
Int
static
val
textAppearanceHeadline5
:
Int
static
val
textAppearanceHeadline6
:
Int
static
val
textAppearanceLargePopupMenu
:
Int
static
val
textAppearanceListItem
:
Int
static
val
textAppearanceListItemSecondary
:
Int
static
val
textAppearanceListItemSmall
:
Int
static
val
textAppearanceOverline
:
Int
static
val
textAppearancePopupMenuHeader
:
Int
static
val
textAppearanceSearchResultSubtitle
:
Int
static
val
textAppearanceSearchResultTitle
:
Int
static
val
textAppearanceSmallPopupMenu
:
Int
static
val
textAppearanceSubtitle1
:
Int
static
val
textAppearanceSubtitle2
:
Int
static
val
textColorAlertDialogListItem
:
Int
static
val
textColorSearchUrl
:
Int
static
val
textEndPadding
:
Int
static
val
textInputStyle
:
Int
static
val
textStartPadding
:
Int
static
val
theme
:
Int
static
val
thickness
:
Int
static
val
thumbTextPadding
:
Int
static
val
thumbTint
:
Int
static
val
thumbTintMode
:
Int
static
val
tickMark
:
Int
static
val
tickMarkTint
:
Int
static
val
tickMarkTintMode
:
Int
static
val
tint
:
Int
static
val
tintMode
:
Int
static
val
title
:
Int
static
val
titleEnabled
:
Int
static
val
titleMargin
:
Int
static
val
titleMarginBottom
:
Int
static
val
titleMarginEnd
:
Int
static
val
titleMarginStart
:
Int
static
val
titleMarginTop
:
Int
static
val
titleMargins
:
Int
static
val
titleTextAppearance
:
Int
static
val
titleTextColor
:
Int
static
val
titleTextStyle
:
Int
static
val
toolbarId
:
Int
static
val
toolbarNavigationButtonStyle
:
Int
static
val
toolbarStyle
:
Int
static
val
tooltipForegroundColor
:
Int
static
val
tooltipFrameBackground
:
Int
static
val
tooltipText
:
Int
static
val
track
:
Int
static
val
trackTint
:
Int
static
val
trackTintMode
:
Int
static
val
ttcIndex
:
Int
static
val
useCompatPadding
:
Int
static
val
viewInflaterClass
:
Int
static
val
voiceIcon
:
Int
static
val
windowActionBar
:
Int
static
val
windowActionBarOverlay
:
Int
static
val
windowActionModeOverlay
:
Int
static
val
windowFixedHeightMajor
:
Int
static
val
windowFixedHeightMinor
:
Int
static
val
windowFixedWidthMajor
:
Int
static
val
windowFixedWidthMinor
:
Int
static
val
windowMinWidthMajor
:
Int
static
val
windowMinWidthMinor
:
Int
static
val
windowNoTitle
:
Int
class
bool
Module Contents
static
val
abc_action_bar_embed_tabs
:
Int
static
val
abc_allow_stacked_button_bar
:
Int
static
val
abc_config_actionMenuItemAllCaps
:
Int
static
val
mtrl_btn_textappearance_all_caps
:
Int
class
color
Module Contents
static
val
abc_background_cache_hint_selector_material_dark
:
Int
static
val
abc_background_cache_hint_selector_material_light
:
Int
static
val
abc_btn_colored_borderless_text_material
:
Int
static
val
abc_btn_colored_text_material
:
Int
static
val
abc_color_highlight_material
:
Int
static
val
abc_hint_foreground_material_dark
:
Int
static
val
abc_hint_foreground_material_light
:
Int
static
val
abc_input_method_navigation_guard
:
Int
static
val
abc_primary_text_disable_only_material_dark
:
Int
static
val
abc_primary_text_disable_only_material_light
:
Int
static
val
abc_primary_text_material_dark
:
Int
static
val
abc_primary_text_material_light
:
Int
static
val
abc_search_url_text
:
Int
static
val
abc_search_url_text_normal
:
Int
static
val
abc_search_url_text_pressed
:
Int
static
val
abc_search_url_text_selected
:
Int
static
val
abc_secondary_text_material_dark
:
Int
static
val
abc_secondary_text_material_light
:
Int
static
val
abc_tint_btn_checkable
:
Int
static
val
abc_tint_default
:
Int
static
val
abc_tint_edittext
:
Int
static
val
abc_tint_seek_thumb
:
Int
static
val
abc_tint_spinner
:
Int
static
val
abc_tint_switch_track
:
Int
static
val
accent_material_dark
:
Int
static
val
accent_material_light
:
Int
static
val
background_floating_material_dark
:
Int
static
val
background_floating_material_light
:
Int
static
val
background_material_dark
:
Int
static
val
background_material_light
:
Int
static
val
bright_foreground_disabled_material_dark
:
Int
static
val
bright_foreground_disabled_material_light
:
Int
static
val
bright_foreground_inverse_material_dark
:
Int
static
val
bright_foreground_inverse_material_light
:
Int
static
val
bright_foreground_material_dark
:
Int
static
val
bright_foreground_material_light
:
Int
static
val
button_material_dark
:
Int
static
val
button_material_light
:
Int
static
val
cardview_dark_background
:
Int
static
val
cardview_light_background
:
Int
static
val
cardview_shadow_end_color
:
Int
static
val
cardview_shadow_start_color
:
Int
static
val
design_bottom_navigation_shadow_color
:
Int
static
val
design_default_color_primary
:
Int
static
val
design_default_color_primary_dark
:
Int
static
val
design_error
:
Int
static
val
design_fab_shadow_end_color
:
Int
static
val
design_fab_shadow_mid_color
:
Int
static
val
design_fab_shadow_start_color
:
Int
static
val
design_fab_stroke_end_inner_color
:
Int
static
val
design_fab_stroke_end_outer_color
:
Int
static
val
design_fab_stroke_top_inner_color
:
Int
static
val
design_fab_stroke_top_outer_color
:
Int
static
val
design_snackbar_background_color
:
Int
static
val
design_tint_password_toggle
:
Int
static
val
dim_foreground_disabled_material_dark
:
Int
static
val
dim_foreground_disabled_material_light
:
Int
static
val
dim_foreground_material_dark
:
Int
static
val
dim_foreground_material_light
:
Int
static
val
error_color_material_dark
:
Int
static
val
error_color_material_light
:
Int
static
val
foreground_material_dark
:
Int
static
val
foreground_material_light
:
Int
static
val
highlighted_text_material_dark
:
Int
static
val
highlighted_text_material_light
:
Int
static
val
material_blue_grey_800
:
Int
static
val
material_blue_grey_900
:
Int
static
val
material_blue_grey_950
:
Int
static
val
material_deep_teal_200
:
Int
static
val
material_deep_teal_500
:
Int
static
val
material_grey_100
:
Int
static
val
material_grey_300
:
Int
static
val
material_grey_50
:
Int
static
val
material_grey_600
:
Int
static
val
material_grey_800
:
Int
static
val
material_grey_850
:
Int
static
val
material_grey_900
:
Int
static
val
mtrl_bottom_nav_colored_item_tint
:
Int
static
val
mtrl_bottom_nav_item_tint
:
Int
static
val
mtrl_btn_bg_color_disabled
:
Int
static
val
mtrl_btn_bg_color_selector
:
Int
static
val
mtrl_btn_ripple_color
:
Int
static
val
mtrl_btn_stroke_color_selector
:
Int
static
val
mtrl_btn_text_btn_ripple_color
:
Int
static
val
mtrl_btn_text_color_disabled
:
Int
static
val
mtrl_btn_text_color_selector
:
Int
static
val
mtrl_btn_transparent_bg_color
:
Int
static
val
mtrl_chip_background_color
:
Int
static
val
mtrl_chip_close_icon_tint
:
Int
static
val
mtrl_chip_ripple_color
:
Int
static
val
mtrl_chip_text_color
:
Int
static
val
mtrl_fab_ripple_color
:
Int
static
val
mtrl_scrim_color
:
Int
static
val
mtrl_tabs_colored_ripple_color
:
Int
static
val
mtrl_tabs_icon_color_selector
:
Int
static
val
mtrl_tabs_icon_color_selector_colored
:
Int
static
val
mtrl_tabs_legacy_text_color_selector
:
Int
static
val
mtrl_tabs_ripple_color
:
Int
static
val
mtrl_text_btn_text_color_selector
:
Int
static
val
mtrl_textinput_default_box_stroke_color
:
Int
static
val
mtrl_textinput_disabled_color
:
Int
static
val
mtrl_textinput_filled_box_default_background_color
:
Int
static
val
mtrl_textinput_hovered_box_stroke_color
:
Int
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
primary_dark_material_dark
:
Int
static
val
primary_dark_material_light
:
Int
static
val
primary_material_dark
:
Int
static
val
primary_material_light
:
Int
static
val
primary_text_default_material_dark
:
Int
static
val
primary_text_default_material_light
:
Int
static
val
primary_text_disabled_material_dark
:
Int
static
val
primary_text_disabled_material_light
:
Int
static
val
ripple_material_dark
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_dark
:
Int
static
val
secondary_text_default_material_light
:
Int
static
val
secondary_text_disabled_material_dark
:
Int
static
val
secondary_text_disabled_material_light
:
Int
static
val
switch_thumb_disabled_material_dark
:
Int
static
val
switch_thumb_disabled_material_light
:
Int
static
val
switch_thumb_material_dark
:
Int
static
val
switch_thumb_material_light
:
Int
static
val
switch_thumb_normal_material_dark
:
Int
static
val
switch_thumb_normal_material_light
:
Int
static
val
tooltip_background_dark
:
Int
static
val
tooltip_background_light
:
Int
class
dimen
Module Contents
static
val
abc_action_bar_content_inset_material
:
Int
static
val
abc_action_bar_content_inset_with_nav
:
Int
static
val
abc_action_bar_default_height_material
:
Int
static
val
abc_action_bar_default_padding_end_material
:
Int
static
val
abc_action_bar_default_padding_start_material
:
Int
static
val
abc_action_bar_elevation_material
:
Int
static
val
abc_action_bar_icon_vertical_padding_material
:
Int
static
val
abc_action_bar_overflow_padding_end_material
:
Int
static
val
abc_action_bar_overflow_padding_start_material
:
Int
static
val
abc_action_bar_stacked_max_height
:
Int
static
val
abc_action_bar_stacked_tab_max_width
:
Int
static
val
abc_action_bar_subtitle_bottom_margin_material
:
Int
static
val
abc_action_bar_subtitle_top_margin_material
:
Int
static
val
abc_action_button_min_height_material
:
Int
static
val
abc_action_button_min_width_material
:
Int
static
val
abc_action_button_min_width_overflow_material
:
Int
static
val
abc_alert_dialog_button_bar_height
:
Int
static
val
abc_alert_dialog_button_dimen
:
Int
static
val
abc_button_inset_horizontal_material
:
Int
static
val
abc_button_inset_vertical_material
:
Int
static
val
abc_button_padding_horizontal_material
:
Int
static
val
abc_button_padding_vertical_material
:
Int
static
val
abc_cascading_menus_min_smallest_width
:
Int
static
val
abc_config_prefDialogWidth
:
Int
static
val
abc_control_corner_material
:
Int
static
val
abc_control_inset_material
:
Int
static
val
abc_control_padding_material
:
Int
static
val
abc_dialog_corner_radius_material
:
Int
static
val
abc_dialog_fixed_height_major
:
Int
static
val
abc_dialog_fixed_height_minor
:
Int
static
val
abc_dialog_fixed_width_major
:
Int
static
val
abc_dialog_fixed_width_minor
:
Int
static
val
abc_dialog_list_padding_bottom_no_buttons
:
Int
static
val
abc_dialog_list_padding_top_no_title
:
Int
static
val
abc_dialog_min_width_major
:
Int
static
val
abc_dialog_min_width_minor
:
Int
static
val
abc_dialog_padding_material
:
Int
static
val
abc_dialog_padding_top_material
:
Int
static
val
abc_dialog_title_divider_material
:
Int
static
val
abc_disabled_alpha_material_dark
:
Int
static
val
abc_disabled_alpha_material_light
:
Int
static
val
abc_dropdownitem_icon_width
:
Int
static
val
abc_dropdownitem_text_padding_left
:
Int
static
val
abc_dropdownitem_text_padding_right
:
Int
static
val
abc_edit_text_inset_bottom_material
:
Int
static
val
abc_edit_text_inset_horizontal_material
:
Int
static
val
abc_edit_text_inset_top_material
:
Int
static
val
abc_floating_window_z
:
Int
static
val
abc_list_item_padding_horizontal_material
:
Int
static
val
abc_panel_menu_list_width
:
Int
static
val
abc_progress_bar_height_material
:
Int
static
val
abc_search_view_preferred_height
:
Int
static
val
abc_search_view_preferred_width
:
Int
static
val
abc_seekbar_track_background_height_material
:
Int
static
val
abc_seekbar_track_progress_height_material
:
Int
static
val
abc_select_dialog_padding_start_material
:
Int
static
val
abc_switch_padding
:
Int
static
val
abc_text_size_body_1_material
:
Int
static
val
abc_text_size_body_2_material
:
Int
static
val
abc_text_size_button_material
:
Int
static
val
abc_text_size_caption_material
:
Int
static
val
abc_text_size_display_1_material
:
Int
static
val
abc_text_size_display_2_material
:
Int
static
val
abc_text_size_display_3_material
:
Int
static
val
abc_text_size_display_4_material
:
Int
static
val
abc_text_size_headline_material
:
Int
static
val
abc_text_size_large_material
:
Int
static
val
abc_text_size_medium_material
:
Int
static
val
abc_text_size_menu_header_material
:
Int
static
val
abc_text_size_menu_material
:
Int
static
val
abc_text_size_small_material
:
Int
static
val
abc_text_size_subhead_material
:
Int
static
val
abc_text_size_subtitle_material_toolbar
:
Int
static
val
abc_text_size_title_material
:
Int
static
val
abc_text_size_title_material_toolbar
:
Int
static
val
cardview_compat_inset_shadow
:
Int
static
val
cardview_default_elevation
:
Int
static
val
cardview_default_radius
:
Int
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
design_appbar_elevation
:
Int
static
val
design_bottom_navigation_active_item_max_width
:
Int
static
val
design_bottom_navigation_active_item_min_width
:
Int
static
val
design_bottom_navigation_active_text_size
:
Int
static
val
design_bottom_navigation_elevation
:
Int
static
val
design_bottom_navigation_height
:
Int
static
val
design_bottom_navigation_icon_size
:
Int
static
val
design_bottom_navigation_item_max_width
:
Int
static
val
design_bottom_navigation_item_min_width
:
Int
static
val
design_bottom_navigation_margin
:
Int
static
val
design_bottom_navigation_shadow_height
:
Int
static
val
design_bottom_navigation_text_size
:
Int
static
val
design_bottom_sheet_modal_elevation
:
Int
static
val
design_bottom_sheet_peek_height_min
:
Int
static
val
design_fab_border_width
:
Int
static
val
design_fab_elevation
:
Int
static
val
design_fab_image_size
:
Int
static
val
design_fab_size_mini
:
Int
static
val
design_fab_size_normal
:
Int
static
val
design_fab_translation_z_hovered_focused
:
Int
static
val
design_fab_translation_z_pressed
:
Int
static
val
design_navigation_elevation
:
Int
static
val
design_navigation_icon_padding
:
Int
static
val
design_navigation_icon_size
:
Int
static
val
design_navigation_item_horizontal_padding
:
Int
static
val
design_navigation_item_icon_padding
:
Int
static
val
design_navigation_max_width
:
Int
static
val
design_navigation_padding_bottom
:
Int
static
val
design_navigation_separator_vertical_padding
:
Int
static
val
design_snackbar_action_inline_max_width
:
Int
static
val
design_snackbar_background_corner_radius
:
Int
static
val
design_snackbar_elevation
:
Int
static
val
design_snackbar_extra_spacing_horizontal
:
Int
static
val
design_snackbar_max_width
:
Int
static
val
design_snackbar_min_width
:
Int
static
val
design_snackbar_padding_horizontal
:
Int
static
val
design_snackbar_padding_vertical
:
Int
static
val
design_snackbar_padding_vertical_2lines
:
Int
static
val
design_snackbar_text_size
:
Int
static
val
design_tab_max_width
:
Int
static
val
design_tab_scrollable_min_width
:
Int
static
val
design_tab_text_size
:
Int
static
val
design_tab_text_size_2line
:
Int
static
val
design_textinput_caption_translate_y
:
Int
static
val
disabled_alpha_material_dark
:
Int
static
val
disabled_alpha_material_light
:
Int
static
val
fastscroll_default_thickness
:
Int
static
val
fastscroll_margin
:
Int
static
val
fastscroll_minimum_range
:
Int
static
val
highlight_alpha_material_colored
:
Int
static
val
highlight_alpha_material_dark
:
Int
static
val
highlight_alpha_material_light
:
Int
static
val
hint_alpha_material_dark
:
Int
static
val
hint_alpha_material_light
:
Int
static
val
hint_pressed_alpha_material_dark
:
Int
static
val
hint_pressed_alpha_material_light
:
Int
static
val
item_touch_helper_max_drag_scroll_per_frame
:
Int
static
val
item_touch_helper_swipe_escape_max_velocity
:
Int
static
val
item_touch_helper_swipe_escape_velocity
:
Int
static
val
mtrl_bottomappbar_fabOffsetEndMode
:
Int
static
val
mtrl_bottomappbar_fab_cradle_margin
:
Int
static
val
mtrl_bottomappbar_fab_cradle_rounded_corner_radius
:
Int
static
val
mtrl_bottomappbar_fab_cradle_vertical_offset
:
Int
static
val
mtrl_bottomappbar_height
:
Int
static
val
mtrl_btn_corner_radius
:
Int
static
val
mtrl_btn_dialog_btn_min_width
:
Int
static
val
mtrl_btn_disabled_elevation
:
Int
static
val
mtrl_btn_disabled_z
:
Int
static
val
mtrl_btn_elevation
:
Int
static
val
mtrl_btn_focused_z
:
Int
static
val
mtrl_btn_hovered_z
:
Int
static
val
mtrl_btn_icon_btn_padding_left
:
Int
static
val
mtrl_btn_icon_padding
:
Int
static
val
mtrl_btn_inset
:
Int
static
val
mtrl_btn_letter_spacing
:
Int
static
val
mtrl_btn_padding_bottom
:
Int
static
val
mtrl_btn_padding_left
:
Int
static
val
mtrl_btn_padding_right
:
Int
static
val
mtrl_btn_padding_top
:
Int
static
val
mtrl_btn_pressed_z
:
Int
static
val
mtrl_btn_stroke_size
:
Int
static
val
mtrl_btn_text_btn_icon_padding
:
Int
static
val
mtrl_btn_text_btn_padding_left
:
Int
static
val
mtrl_btn_text_btn_padding_right
:
Int
static
val
mtrl_btn_text_size
:
Int
static
val
mtrl_btn_z
:
Int
static
val
mtrl_card_elevation
:
Int
static
val
mtrl_card_spacing
:
Int
static
val
mtrl_chip_pressed_translation_z
:
Int
static
val
mtrl_chip_text_size
:
Int
static
val
mtrl_fab_elevation
:
Int
static
val
mtrl_fab_translation_z_hovered_focused
:
Int
static
val
mtrl_fab_translation_z_pressed
:
Int
static
val
mtrl_navigation_elevation
:
Int
static
val
mtrl_navigation_item_horizontal_padding
:
Int
static
val
mtrl_navigation_item_icon_padding
:
Int
static
val
mtrl_snackbar_background_corner_radius
:
Int
static
val
mtrl_snackbar_margin
:
Int
static
val
mtrl_textinput_box_bottom_offset
:
Int
static
val
mtrl_textinput_box_corner_radius_medium
:
Int
static
val
mtrl_textinput_box_corner_radius_small
:
Int
static
val
mtrl_textinput_box_label_cutout_padding
:
Int
static
val
mtrl_textinput_box_padding_end
:
Int
static
val
mtrl_textinput_box_stroke_width_default
:
Int
static
val
mtrl_textinput_box_stroke_width_focused
:
Int
static
val
mtrl_textinput_outline_box_expanded_padding
:
Int
static
val
mtrl_toolbar_default_height
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
static
val
tooltip_corner_radius
:
Int
static
val
tooltip_horizontal_padding
:
Int
static
val
tooltip_margin
:
Int
static
val
tooltip_precise_anchor_extra_offset
:
Int
static
val
tooltip_precise_anchor_threshold
:
Int
static
val
tooltip_vertical_padding
:
Int
static
val
tooltip_y_offset_non_touch
:
Int
static
val
tooltip_y_offset_touch
:
Int
class
drawable
Module Contents
static
val
abc_ab_share_pack_mtrl_alpha
:
Int
static
val
abc_action_bar_item_background_material
:
Int
static
val
abc_btn_borderless_material
:
Int
static
val
abc_btn_check_material
:
Int
static
val
abc_btn_check_to_on_mtrl_000
:
Int
static
val
abc_btn_check_to_on_mtrl_015
:
Int
static
val
abc_btn_colored_material
:
Int
static
val
abc_btn_default_mtrl_shape
:
Int
static
val
abc_btn_radio_material
:
Int
static
val
abc_btn_radio_to_on_mtrl_000
:
Int
static
val
abc_btn_radio_to_on_mtrl_015
:
Int
static
val
abc_btn_switch_to_on_mtrl_00001
:
Int
static
val
abc_btn_switch_to_on_mtrl_00012
:
Int
static
val
abc_cab_background_internal_bg
:
Int
static
val
abc_cab_background_top_material
:
Int
static
val
abc_cab_background_top_mtrl_alpha
:
Int
static
val
abc_control_background_material
:
Int
static
val
abc_dialog_material_background
:
Int
static
val
abc_edit_text_material
:
Int
static
val
abc_ic_ab_back_material
:
Int
static
val
abc_ic_arrow_drop_right_black_24dp
:
Int
static
val
abc_ic_clear_material
:
Int
static
val
abc_ic_commit_search_api_mtrl_alpha
:
Int
static
val
abc_ic_go_search_api_material
:
Int
static
val
abc_ic_menu_copy_mtrl_am_alpha
:
Int
static
val
abc_ic_menu_cut_mtrl_alpha
:
Int
static
val
abc_ic_menu_overflow_material
:
Int
static
val
abc_ic_menu_paste_mtrl_am_alpha
:
Int
static
val
abc_ic_menu_selectall_mtrl_alpha
:
Int
static
val
abc_ic_menu_share_mtrl_alpha
:
Int
static
val
abc_ic_search_api_material
:
Int
static
val
abc_ic_star_black_16dp
:
Int
static
val
abc_ic_star_black_36dp
:
Int
static
val
abc_ic_star_black_48dp
:
Int
static
val
abc_ic_star_half_black_16dp
:
Int
static
val
abc_ic_star_half_black_36dp
:
Int
static
val
abc_ic_star_half_black_48dp
:
Int
static
val
abc_ic_voice_search_api_material
:
Int
static
val
abc_item_background_holo_dark
:
Int
static
val
abc_item_background_holo_light
:
Int
static
val
abc_list_divider_material
:
Int
static
val
abc_list_divider_mtrl_alpha
:
Int
static
val
abc_list_focused_holo
:
Int
static
val
abc_list_longpressed_holo
:
Int
static
val
abc_list_pressed_holo_dark
:
Int
static
val
abc_list_pressed_holo_light
:
Int
static
val
abc_list_selector_background_transition_holo_dark
:
Int
static
val
abc_list_selector_background_transition_holo_light
:
Int
static
val
abc_list_selector_disabled_holo_dark
:
Int
static
val
abc_list_selector_disabled_holo_light
:
Int
static
val
abc_list_selector_holo_dark
:
Int
static
val
abc_list_selector_holo_light
:
Int
static
val
abc_menu_hardkey_panel_mtrl_mult
:
Int
static
val
abc_popup_background_mtrl_mult
:
Int
static
val
abc_ratingbar_indicator_material
:
Int
static
val
abc_ratingbar_material
:
Int
static
val
abc_ratingbar_small_material
:
Int
static
val
abc_scrubber_control_off_mtrl_alpha
:
Int
static
val
abc_scrubber_control_to_pressed_mtrl_000
:
Int
static
val
abc_scrubber_control_to_pressed_mtrl_005
:
Int
static
val
abc_scrubber_primary_mtrl_alpha
:
Int
static
val
abc_scrubber_track_mtrl_alpha
:
Int
static
val
abc_seekbar_thumb_material
:
Int
static
val
abc_seekbar_tick_mark_material
:
Int
static
val
abc_seekbar_track_material
:
Int
static
val
abc_spinner_mtrl_am_alpha
:
Int
static
val
abc_spinner_textfield_background_material
:
Int
static
val
abc_switch_thumb_material
:
Int
static
val
abc_switch_track_mtrl_alpha
:
Int
static
val
abc_tab_indicator_material
:
Int
static
val
abc_tab_indicator_mtrl_alpha
:
Int
static
val
abc_text_cursor_material
:
Int
static
val
abc_text_select_handle_left_mtrl_dark
:
Int
static
val
abc_text_select_handle_left_mtrl_light
:
Int
static
val
abc_text_select_handle_middle_mtrl_dark
:
Int
static
val
abc_text_select_handle_middle_mtrl_light
:
Int
static
val
abc_text_select_handle_right_mtrl_dark
:
Int
static
val
abc_text_select_handle_right_mtrl_light
:
Int
static
val
abc_textfield_activated_mtrl_alpha
:
Int
static
val
abc_textfield_default_mtrl_alpha
:
Int
static
val
abc_textfield_search_activated_mtrl_alpha
:
Int
static
val
abc_textfield_search_default_mtrl_alpha
:
Int
static
val
abc_textfield_search_material
:
Int
static
val
abc_vector_test
:
Int
static
val
avd_hide_password
:
Int
static
val
avd_show_password
:
Int
static
val
design_bottom_navigation_item_background
:
Int
static
val
design_fab_background
:
Int
static
val
design_ic_visibility
:
Int
static
val
design_ic_visibility_off
:
Int
static
val
design_password_eye
:
Int
static
val
design_snackbar_background
:
Int
static
val
ic_mtrl_chip_checked_black
:
Int
static
val
ic_mtrl_chip_checked_circle
:
Int
static
val
ic_mtrl_chip_close_circle
:
Int
static
val
mtrl_snackbar_background
:
Int
static
val
mtrl_tabs_default_indicator
:
Int
static
val
navigation_empty_icon
:
Int
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
static
val
tooltip_frame_dark
:
Int
static
val
tooltip_frame_light
:
Int
class
id
Module Contents
static
val
action_bar
:
Int
static
val
action_bar_activity_content
:
Int
static
val
action_bar_container
:
Int
static
val
action_bar_root
:
Int
static
val
action_bar_spinner
:
Int
static
val
action_bar_subtitle
:
Int
static
val
action_bar_title
:
Int
static
val
action_container
:
Int
static
val
action_context_bar
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_menu_divider
:
Int
static
val
action_menu_presenter
:
Int
static
val
action_mode_bar
:
Int
static
val
action_mode_bar_stub
:
Int
static
val
action_mode_close_button
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
activity_chooser_view_content
:
Int
static
val
add
:
Int
static
val
alertTitle
:
Int
static
val
async
:
Int
static
val
auto
:
Int
static
val
blocking
:
Int
static
val
bottom
:
Int
static
val
buttonPanel
:
Int
static
val
center
:
Int
static
val
checkbox
:
Int
static
val
chronometer
:
Int
static
val
container
:
Int
static
val
content
:
Int
static
val
contentPanel
:
Int
static
val
coordinator
:
Int
static
val
custom
:
Int
static
val
customPanel
:
Int
static
val
decor_content_parent
:
Int
static
val
default_activity_button
:
Int
static
val
design_bottom_sheet
:
Int
static
val
design_menu_item_action_area
:
Int
static
val
design_menu_item_action_area_stub
:
Int
static
val
design_menu_item_text
:
Int
static
val
design_navigation_view
:
Int
static
val
edit_query
:
Int
static
val
end
:
Int
static
val
expand_activities_button
:
Int
static
val
expanded_menu
:
Int
static
val
fill
:
Int
static
val
filled
:
Int
static
val
fixed
:
Int
static
val
forever
:
Int
static
val
ghost_view
:
Int
static
val
group_divider
:
Int
static
val
home
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
image
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
item_touch_helper_previous_elevation
:
Int
static
val
labeled
:
Int
static
val
largeLabel
:
Int
static
val
left
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
listMode
:
Int
static
val
list_item
:
Int
static
val
masked
:
Int
static
val
message
:
Int
static
val
mini
:
Int
static
val
mtrl_child_content_container
:
Int
static
val
mtrl_internal_children_alpha_tag
:
Int
static
val
multiply
:
Int
static
val
navigation_header_container
:
Int
static
val
none
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
outline
:
Int
static
val
parallax
:
Int
static
val
parentPanel
:
Int
static
val
parent_matrix
:
Int
static
val
pin
:
Int
static
val
progress_circular
:
Int
static
val
progress_horizontal
:
Int
static
val
radio
:
Int
static
val
right
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
save_image_matrix
:
Int
static
val
save_non_transition_alpha
:
Int
static
val
save_scale_type
:
Int
static
val
screen
:
Int
static
val
scrollIndicatorDown
:
Int
static
val
scrollIndicatorUp
:
Int
static
val
scrollView
:
Int
static
val
scrollable
:
Int
static
val
search_badge
:
Int
static
val
search_bar
:
Int
static
val
search_button
:
Int
static
val
search_close_btn
:
Int
static
val
search_edit_frame
:
Int
static
val
search_go_btn
:
Int
static
val
search_mag_icon
:
Int
static
val
search_plate
:
Int
static
val
search_src_text
:
Int
static
val
search_voice_btn
:
Int
static
val
select_dialog_listview
:
Int
static
val
selected
:
Int
static
val
shortcut
:
Int
static
val
smallLabel
:
Int
static
val
snackbar_action
:
Int
static
val
snackbar_text
:
Int
static
val
spacer
:
Int
static
val
split_action_bar
:
Int
static
val
src_atop
:
Int
static
val
src_in
:
Int
static
val
src_over
:
Int
static
val
start
:
Int
static
val
stretch
:
Int
static
val
submenuarrow
:
Int
static
val
submit_area
:
Int
static
val
tabMode
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
textSpacerNoButtons
:
Int
static
val
textSpacerNoTitle
:
Int
static
val
text_input_password_toggle
:
Int
static
val
textinput_counter
:
Int
static
val
textinput_error
:
Int
static
val
textinput_helper_text
:
Int
static
val
time
:
Int
static
val
title
:
Int
static
val
titleDividerNoCustom
:
Int
static
val
title_template
:
Int
static
val
top
:
Int
static
val
topPanel
:
Int
static
val
touch_outside
:
Int
static
val
transition_current_scene
:
Int
static
val
transition_layout_save
:
Int
static
val
transition_position
:
Int
static
val
transition_scene_layoutid_cache
:
Int
static
val
transition_transform
:
Int
static
val
uniform
:
Int
static
val
unlabeled
:
Int
static
val
up
:
Int
static
val
view_offset_helper
:
Int
static
val
visible
:
Int
static
val
wrap_content
:
Int
class
integer
Module Contents
static
val
abc_config_activityDefaultDur
:
Int
static
val
abc_config_activityShortDur
:
Int
static
val
app_bar_elevation_anim_duration
:
Int
static
val
bottom_sheet_slide_duration
:
Int
static
val
cancel_button_image_alpha
:
Int
static
val
config_tooltipAnimTime
:
Int
static
val
design_snackbar_text_max_lines
:
Int
static
val
design_tab_indicator_anim_duration_ms
:
Int
static
val
hide_password_duration
:
Int
static
val
mtrl_btn_anim_delay_ms
:
Int
static
val
mtrl_btn_anim_duration_ms
:
Int
static
val
mtrl_chip_anim_duration
:
Int
static
val
mtrl_tab_indicator_anim_duration_ms
:
Int
static
val
show_password_duration
:
Int
static
val
status_bar_notification_info_maxnum
:
Int
class
interpolator
Module Contents
static
val
mtrl_fast_out_linear_in
:
Int
static
val
mtrl_fast_out_slow_in
:
Int
static
val
mtrl_linear
:
Int
static
val
mtrl_linear_out_slow_in
:
Int
class
layout
Module Contents
static
val
abc_action_bar_title_item
:
Int
static
val
abc_action_bar_up_container
:
Int
static
val
abc_action_menu_item_layout
:
Int
static
val
abc_action_menu_layout
:
Int
static
val
abc_action_mode_bar
:
Int
static
val
abc_action_mode_close_item_material
:
Int
static
val
abc_activity_chooser_view
:
Int
static
val
abc_activity_chooser_view_list_item
:
Int
static
val
abc_alert_dialog_button_bar_material
:
Int
static
val
abc_alert_dialog_material
:
Int
static
val
abc_alert_dialog_title_material
:
Int
static
val
abc_cascading_menu_item_layout
:
Int
static
val
abc_dialog_title_material
:
Int
static
val
abc_expanded_menu_layout
:
Int
static
val
abc_list_menu_item_checkbox
:
Int
static
val
abc_list_menu_item_icon
:
Int
static
val
abc_list_menu_item_layout
:
Int
static
val
abc_list_menu_item_radio
:
Int
static
val
abc_popup_menu_header_item_layout
:
Int
static
val
abc_popup_menu_item_layout
:
Int
static
val
abc_screen_content_include
:
Int
static
val
abc_screen_simple
:
Int
static
val
abc_screen_simple_overlay_action_mode
:
Int
static
val
abc_screen_toolbar
:
Int
static
val
abc_search_dropdown_item_icons_2line
:
Int
static
val
abc_search_view
:
Int
static
val
abc_select_dialog_material
:
Int
static
val
abc_tooltip
:
Int
static
val
design_bottom_navigation_item
:
Int
static
val
design_bottom_sheet_dialog
:
Int
static
val
design_layout_snackbar
:
Int
static
val
design_layout_snackbar_include
:
Int
static
val
design_layout_tab_icon
:
Int
static
val
design_layout_tab_text
:
Int
static
val
design_menu_item_action_area
:
Int
static
val
design_navigation_item
:
Int
static
val
design_navigation_item_header
:
Int
static
val
design_navigation_item_separator
:
Int
static
val
design_navigation_item_subheader
:
Int
static
val
design_navigation_menu
:
Int
static
val
design_navigation_menu_item
:
Int
static
val
design_text_input_password_icon
:
Int
static
val
mtrl_layout_snackbar
:
Int
static
val
mtrl_layout_snackbar_include
:
Int
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
static
val
select_dialog_item_material
:
Int
static
val
select_dialog_multichoice_material
:
Int
static
val
select_dialog_singlechoice_material
:
Int
static
val
support_simple_spinner_dropdown_item
:
Int
class
string
Module Contents
static
val
abc_action_bar_home_description
:
Int
static
val
abc_action_bar_up_description
:
Int
static
val
abc_action_menu_overflow_description
:
Int
static
val
abc_action_mode_done
:
Int
static
val
abc_activity_chooser_view_see_all
:
Int
static
val
abc_activitychooserview_choose_application
:
Int
static
val
abc_capital_off
:
Int
static
val
abc_capital_on
:
Int
static
val
abc_font_family_body_1_material
:
Int
static
val
abc_font_family_body_2_material
:
Int
static
val
abc_font_family_button_material
:
Int
static
val
abc_font_family_caption_material
:
Int
static
val
abc_font_family_display_1_material
:
Int
static
val
abc_font_family_display_2_material
:
Int
static
val
abc_font_family_display_3_material
:
Int
static
val
abc_font_family_display_4_material
:
Int
static
val
abc_font_family_headline_material
:
Int
static
val
abc_font_family_menu_material
:
Int
static
val
abc_font_family_subhead_material
:
Int
static
val
abc_font_family_title_material
:
Int
static
val
abc_menu_alt_shortcut_label
:
Int
static
val
abc_menu_ctrl_shortcut_label
:
Int
static
val
abc_menu_delete_shortcut_label
:
Int
static
val
abc_menu_enter_shortcut_label
:
Int
static
val
abc_menu_function_shortcut_label
:
Int
static
val
abc_menu_meta_shortcut_label
:
Int
static
val
abc_menu_shift_shortcut_label
:
Int
static
val
abc_menu_space_shortcut_label
:
Int
static
val
abc_menu_sym_shortcut_label
:
Int
static
val
abc_prepend_shortcut_label
:
Int
static
val
abc_search_hint
:
Int
static
val
abc_searchview_description_clear
:
Int
static
val
abc_searchview_description_query
:
Int
static
val
abc_searchview_description_search
:
Int
static
val
abc_searchview_description_submit
:
Int
static
val
abc_searchview_description_voice
:
Int
static
val
abc_shareactionprovider_share_with
:
Int
static
val
abc_shareactionprovider_share_with_application
:
Int
static
val
abc_toolbar_collapse_description
:
Int
static
val
appbar_scrolling_view_behavior
:
Int
static
val
bottom_sheet_behavior
:
Int
static
val
character_counter_content_description
:
Int
static
val
character_counter_pattern
:
Int
static
val
fab_transformation_scrim_behavior
:
Int
static
val
fab_transformation_sheet_behavior
:
Int
static
val
hide_bottom_view_on_scroll_behavior
:
Int
static
val
mtrl_chip_close_icon_content_description
:
Int
static
val
password_toggle_content_description
:
Int
static
val
path_password_eye
:
Int
static
val
path_password_eye_mask_strike_through
:
Int
static
val
path_password_eye_mask_visible
:
Int
static
val
path_password_strike_through
:
Int
static
val
search_menu_title
:
Int
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
AlertDialog_AppCompat
:
Int
static
val
AlertDialog_AppCompat_Light
:
Int
static
val
Animation_AppCompat_Dialog
:
Int
static
val
Animation_AppCompat_DropDownUp
:
Int
static
val
Animation_AppCompat_Tooltip
:
Int
static
val
Animation_Design_BottomSheetDialog
:
Int
static
val
Base_AlertDialog_AppCompat
:
Int
static
val
Base_AlertDialog_AppCompat_Light
:
Int
static
val
Base_Animation_AppCompat_Dialog
:
Int
static
val
Base_Animation_AppCompat_DropDownUp
:
Int
static
val
Base_Animation_AppCompat_Tooltip
:
Int
static
val
Base_CardView
:
Int
static
val
Base_DialogWindowTitleBackground_AppCompat
:
Int
static
val
Base_DialogWindowTitle_AppCompat
:
Int
static
val
Base_TextAppearance_AppCompat
:
Int
static
val
Base_TextAppearance_AppCompat_Body1
:
Int
static
val
Base_TextAppearance_AppCompat_Body2
:
Int
static
val
Base_TextAppearance_AppCompat_Button
:
Int
static
val
Base_TextAppearance_AppCompat_Caption
:
Int
static
val
Base_TextAppearance_AppCompat_Display1
:
Int
static
val
Base_TextAppearance_AppCompat_Display2
:
Int
static
val
Base_TextAppearance_AppCompat_Display3
:
Int
static
val
Base_TextAppearance_AppCompat_Display4
:
Int
static
val
Base_TextAppearance_AppCompat_Headline
:
Int
static
val
Base_TextAppearance_AppCompat_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Large
:
Int
static
val
Base_TextAppearance_AppCompat_Large_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
:
Int
static
val
Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
:
Int
static
val
Base_TextAppearance_AppCompat_Medium
:
Int
static
val
Base_TextAppearance_AppCompat_Medium_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Menu
:
Int
static
val
Base_TextAppearance_AppCompat_SearchResult
:
Int
static
val
Base_TextAppearance_AppCompat_SearchResult_Subtitle
:
Int
static
val
Base_TextAppearance_AppCompat_SearchResult_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Small
:
Int
static
val
Base_TextAppearance_AppCompat_Small_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Subhead
:
Int
static
val
Base_TextAppearance_AppCompat_Subhead_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Title_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Tooltip
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Menu
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionMode_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button_Colored
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_DropDownItem
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_PopupMenu_Header
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_PopupMenu_Large
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_PopupMenu_Small
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Switch
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem
:
Int
static
val
Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item
:
Int
static
val
Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle
:
Int
static
val
Base_TextAppearance_Widget_AppCompat_Toolbar_Title
:
Int
static
val
Base_ThemeOverlay_AppCompat
:
Int
static
val
Base_ThemeOverlay_AppCompat_ActionBar
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dark
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dark_ActionBar
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dialog
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dialog_Alert
:
Int
static
val
Base_ThemeOverlay_AppCompat_Light
:
Int
static
val
Base_ThemeOverlay_MaterialComponents_Dialog
:
Int
static
val
Base_ThemeOverlay_MaterialComponents_Dialog_Alert
:
Int
static
val
Base_Theme_AppCompat
:
Int
static
val
Base_Theme_AppCompat_CompactMenu
:
Int
static
val
Base_Theme_AppCompat_Dialog
:
Int
static
val
Base_Theme_AppCompat_DialogWhenLarge
:
Int
static
val
Base_Theme_AppCompat_Dialog_Alert
:
Int
static
val
Base_Theme_AppCompat_Dialog_FixedSize
:
Int
static
val
Base_Theme_AppCompat_Dialog_MinWidth
:
Int
static
val
Base_Theme_AppCompat_Light
:
Int
static
val
Base_Theme_AppCompat_Light_DarkActionBar
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog
:
Int
static
val
Base_Theme_AppCompat_Light_DialogWhenLarge
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog_Alert
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog_FixedSize
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog_MinWidth
:
Int
static
val
Base_Theme_MaterialComponents
:
Int
static
val
Base_Theme_MaterialComponents_Bridge
:
Int
static
val
Base_Theme_MaterialComponents_CompactMenu
:
Int
static
val
Base_Theme_MaterialComponents_Dialog
:
Int
static
val
Base_Theme_MaterialComponents_DialogWhenLarge
:
Int
static
val
Base_Theme_MaterialComponents_Dialog_Alert
:
Int
static
val
Base_Theme_MaterialComponents_Dialog_FixedSize
:
Int
static
val
Base_Theme_MaterialComponents_Dialog_MinWidth
:
Int
static
val
Base_Theme_MaterialComponents_Light
:
Int
static
val
Base_Theme_MaterialComponents_Light_Bridge
:
Int
static
val
Base_Theme_MaterialComponents_Light_DarkActionBar
:
Int
static
val
Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge
:
Int
static
val
Base_Theme_MaterialComponents_Light_Dialog
:
Int
static
val
Base_Theme_MaterialComponents_Light_DialogWhenLarge
:
Int
static
val
Base_Theme_MaterialComponents_Light_Dialog_Alert
:
Int
static
val
Base_Theme_MaterialComponents_Light_Dialog_FixedSize
:
Int
static
val
Base_Theme_MaterialComponents_Light_Dialog_MinWidth
:
Int
static
val
Base_V14_ThemeOverlay_MaterialComponents_Dialog
:
Int
static
val
Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert
:
Int
static
val
Base_V14_Theme_MaterialComponents
:
Int
static
val
Base_V14_Theme_MaterialComponents_Bridge
:
Int
static
val
Base_V14_Theme_MaterialComponents_Dialog
:
Int
static
val
Base_V14_Theme_MaterialComponents_Light
:
Int
static
val
Base_V14_Theme_MaterialComponents_Light_Bridge
:
Int
static
val
Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge
:
Int
static
val
Base_V14_Theme_MaterialComponents_Light_Dialog
:
Int
static
val
Base_V21_ThemeOverlay_AppCompat_Dialog
:
Int
static
val
Base_V21_Theme_AppCompat
:
Int
static
val
Base_V21_Theme_AppCompat_Dialog
:
Int
static
val
Base_V21_Theme_AppCompat_Light
:
Int
static
val
Base_V21_Theme_AppCompat_Light_Dialog
:
Int
static
val
Base_V22_Theme_AppCompat
:
Int
static
val
Base_V22_Theme_AppCompat_Light
:
Int
static
val
Base_V23_Theme_AppCompat
:
Int
static
val
Base_V23_Theme_AppCompat_Light
:
Int
static
val
Base_V26_Theme_AppCompat
:
Int
static
val
Base_V26_Theme_AppCompat_Light
:
Int
static
val
Base_V26_Widget_AppCompat_Toolbar
:
Int
static
val
Base_V28_Theme_AppCompat
:
Int
static
val
Base_V28_Theme_AppCompat_Light
:
Int
static
val
Base_V7_ThemeOverlay_AppCompat_Dialog
:
Int
static
val
Base_V7_Theme_AppCompat
:
Int
static
val
Base_V7_Theme_AppCompat_Dialog
:
Int
static
val
Base_V7_Theme_AppCompat_Light
:
Int
static
val
Base_V7_Theme_AppCompat_Light_Dialog
:
Int
static
val
Base_V7_Widget_AppCompat_AutoCompleteTextView
:
Int
static
val
Base_V7_Widget_AppCompat_EditText
:
Int
static
val
Base_V7_Widget_AppCompat_Toolbar
:
Int
static
val
Base_Widget_AppCompat_ActionBar
:
Int
static
val
Base_Widget_AppCompat_ActionBar_Solid
:
Int
static
val
Base_Widget_AppCompat_ActionBar_TabBar
:
Int
static
val
Base_Widget_AppCompat_ActionBar_TabText
:
Int
static
val
Base_Widget_AppCompat_ActionBar_TabView
:
Int
static
val
Base_Widget_AppCompat_ActionButton
:
Int
static
val
Base_Widget_AppCompat_ActionButton_CloseMode
:
Int
static
val
Base_Widget_AppCompat_ActionButton_Overflow
:
Int
static
val
Base_Widget_AppCompat_ActionMode
:
Int
static
val
Base_Widget_AppCompat_ActivityChooserView
:
Int
static
val
Base_Widget_AppCompat_AutoCompleteTextView
:
Int
static
val
Base_Widget_AppCompat_Button
:
Int
static
val
Base_Widget_AppCompat_ButtonBar
:
Int
static
val
Base_Widget_AppCompat_ButtonBar_AlertDialog
:
Int
static
val
Base_Widget_AppCompat_Button_Borderless
:
Int
static
val
Base_Widget_AppCompat_Button_Borderless_Colored
:
Int
static
val
Base_Widget_AppCompat_Button_ButtonBar_AlertDialog
:
Int
static
val
Base_Widget_AppCompat_Button_Colored
:
Int
static
val
Base_Widget_AppCompat_Button_Small
:
Int
static
val
Base_Widget_AppCompat_CompoundButton_CheckBox
:
Int
static
val
Base_Widget_AppCompat_CompoundButton_RadioButton
:
Int
static
val
Base_Widget_AppCompat_CompoundButton_Switch
:
Int
static
val
Base_Widget_AppCompat_DrawerArrowToggle
:
Int
static
val
Base_Widget_AppCompat_DrawerArrowToggle_Common
:
Int
static
val
Base_Widget_AppCompat_DropDownItem_Spinner
:
Int
static
val
Base_Widget_AppCompat_EditText
:
Int
static
val
Base_Widget_AppCompat_ImageButton
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_Solid
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabBar
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabText
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabView
:
Int
static
val
Base_Widget_AppCompat_Light_PopupMenu
:
Int
static
val
Base_Widget_AppCompat_Light_PopupMenu_Overflow
:
Int
static
val
Base_Widget_AppCompat_ListMenuView
:
Int
static
val
Base_Widget_AppCompat_ListPopupWindow
:
Int
static
val
Base_Widget_AppCompat_ListView
:
Int
static
val
Base_Widget_AppCompat_ListView_DropDown
:
Int
static
val
Base_Widget_AppCompat_ListView_Menu
:
Int
static
val
Base_Widget_AppCompat_PopupMenu
:
Int
static
val
Base_Widget_AppCompat_PopupMenu_Overflow
:
Int
static
val
Base_Widget_AppCompat_PopupWindow
:
Int
static
val
Base_Widget_AppCompat_ProgressBar
:
Int
static
val
Base_Widget_AppCompat_ProgressBar_Horizontal
:
Int
static
val
Base_Widget_AppCompat_RatingBar
:
Int
static
val
Base_Widget_AppCompat_RatingBar_Indicator
:
Int
static
val
Base_Widget_AppCompat_RatingBar_Small
:
Int
static
val
Base_Widget_AppCompat_SearchView
:
Int
static
val
Base_Widget_AppCompat_SearchView_ActionBar
:
Int
static
val
Base_Widget_AppCompat_SeekBar
:
Int
static
val
Base_Widget_AppCompat_SeekBar_Discrete
:
Int
static
val
Base_Widget_AppCompat_Spinner
:
Int
static
val
Base_Widget_AppCompat_Spinner_Underlined
:
Int
static
val
Base_Widget_AppCompat_TextView_SpinnerItem
:
Int
static
val
Base_Widget_AppCompat_Toolbar
:
Int
static
val
Base_Widget_AppCompat_Toolbar_Button_Navigation
:
Int
static
val
Base_Widget_Design_TabLayout
:
Int
static
val
Base_Widget_MaterialComponents_Chip
:
Int
static
val
Base_Widget_MaterialComponents_TextInputEditText
:
Int
static
val
Base_Widget_MaterialComponents_TextInputLayout
:
Int
static
val
CardView
:
Int
static
val
CardView_Dark
:
Int
static
val
CardView_Light
:
Int
static
val
Platform_AppCompat
:
Int
static
val
Platform_AppCompat_Light
:
Int
static
val
Platform_MaterialComponents
:
Int
static
val
Platform_MaterialComponents_Dialog
:
Int
static
val
Platform_MaterialComponents_Light
:
Int
static
val
Platform_MaterialComponents_Light_Dialog
:
Int
static
val
Platform_ThemeOverlay_AppCompat
:
Int
static
val
Platform_ThemeOverlay_AppCompat_Dark
:
Int
static
val
Platform_ThemeOverlay_AppCompat_Light
:
Int
static
val
Platform_V21_AppCompat
:
Int
static
val
Platform_V21_AppCompat_Light
:
Int
static
val
Platform_V25_AppCompat
:
Int
static
val
Platform_V25_AppCompat_Light
:
Int
static
val
Platform_Widget_AppCompat_Spinner
:
Int
static
val
RtlOverlay_DialogWindowTitle_AppCompat
:
Int
static
val
RtlOverlay_Widget_AppCompat_ActionBar_TitleItem
:
Int
static
val
RtlOverlay_Widget_AppCompat_DialogTitle_Icon
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_Text
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_Title
:
Int
static
val
RtlOverlay_Widget_AppCompat_SearchView_MagIcon
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Query
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Text
:
Int
static
val
RtlUnderlay_Widget_AppCompat_ActionButton
:
Int
static
val
RtlUnderlay_Widget_AppCompat_ActionButton_Overflow
:
Int
static
val
TextAppearance_AppCompat
:
Int
static
val
TextAppearance_AppCompat_Body1
:
Int
static
val
TextAppearance_AppCompat_Body2
:
Int
static
val
TextAppearance_AppCompat_Button
:
Int
static
val
TextAppearance_AppCompat_Caption
:
Int
static
val
TextAppearance_AppCompat_Display1
:
Int
static
val
TextAppearance_AppCompat_Display2
:
Int
static
val
TextAppearance_AppCompat_Display3
:
Int
static
val
TextAppearance_AppCompat_Display4
:
Int
static
val
TextAppearance_AppCompat_Headline
:
Int
static
val
TextAppearance_AppCompat_Inverse
:
Int
static
val
TextAppearance_AppCompat_Large
:
Int
static
val
TextAppearance_AppCompat_Large_Inverse
:
Int
static
val
TextAppearance_AppCompat_Light_SearchResult_Subtitle
:
Int
static
val
TextAppearance_AppCompat_Light_SearchResult_Title
:
Int
static
val
TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
:
Int
static
val
TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
:
Int
static
val
TextAppearance_AppCompat_Medium
:
Int
static
val
TextAppearance_AppCompat_Medium_Inverse
:
Int
static
val
TextAppearance_AppCompat_Menu
:
Int
static
val
TextAppearance_AppCompat_SearchResult_Subtitle
:
Int
static
val
TextAppearance_AppCompat_SearchResult_Title
:
Int
static
val
TextAppearance_AppCompat_Small
:
Int
static
val
TextAppearance_AppCompat_Small_Inverse
:
Int
static
val
TextAppearance_AppCompat_Subhead
:
Int
static
val
TextAppearance_AppCompat_Subhead_Inverse
:
Int
static
val
TextAppearance_AppCompat_Title
:
Int
static
val
TextAppearance_AppCompat_Title_Inverse
:
Int
static
val
TextAppearance_AppCompat_Tooltip
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Menu
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Subtitle
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Title
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Subtitle
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Title
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_Button
:
Int
static
val
TextAppearance_AppCompat_Widget_Button_Borderless_Colored
:
Int
static
val
TextAppearance_AppCompat_Widget_Button_Colored
:
Int
static
val
TextAppearance_AppCompat_Widget_Button_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_DropDownItem
:
Int
static
val
TextAppearance_AppCompat_Widget_PopupMenu_Header
:
Int
static
val
TextAppearance_AppCompat_Widget_PopupMenu_Large
:
Int
static
val
TextAppearance_AppCompat_Widget_PopupMenu_Small
:
Int
static
val
TextAppearance_AppCompat_Widget_Switch
:
Int
static
val
TextAppearance_AppCompat_Widget_TextView_SpinnerItem
:
Int
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
TextAppearance_Design_CollapsingToolbar_Expanded
:
Int
static
val
TextAppearance_Design_Counter
:
Int
static
val
TextAppearance_Design_Counter_Overflow
:
Int
static
val
TextAppearance_Design_Error
:
Int
static
val
TextAppearance_Design_HelperText
:
Int
static
val
TextAppearance_Design_Hint
:
Int
static
val
TextAppearance_Design_Snackbar_Message
:
Int
static
val
TextAppearance_Design_Tab
:
Int
static
val
TextAppearance_MaterialComponents_Body1
:
Int
static
val
TextAppearance_MaterialComponents_Body2
:
Int
static
val
TextAppearance_MaterialComponents_Button
:
Int
static
val
TextAppearance_MaterialComponents_Caption
:
Int
static
val
TextAppearance_MaterialComponents_Chip
:
Int
static
val
TextAppearance_MaterialComponents_Headline1
:
Int
static
val
TextAppearance_MaterialComponents_Headline2
:
Int
static
val
TextAppearance_MaterialComponents_Headline3
:
Int
static
val
TextAppearance_MaterialComponents_Headline4
:
Int
static
val
TextAppearance_MaterialComponents_Headline5
:
Int
static
val
TextAppearance_MaterialComponents_Headline6
:
Int
static
val
TextAppearance_MaterialComponents_Overline
:
Int
static
val
TextAppearance_MaterialComponents_Subtitle1
:
Int
static
val
TextAppearance_MaterialComponents_Subtitle2
:
Int
static
val
TextAppearance_MaterialComponents_Tab
:
Int
static
val
TextAppearance_Widget_AppCompat_ExpandedMenu_Item
:
Int
static
val
TextAppearance_Widget_AppCompat_Toolbar_Subtitle
:
Int
static
val
TextAppearance_Widget_AppCompat_Toolbar_Title
:
Int
static
val
ThemeOverlay_AppCompat
:
Int
static
val
ThemeOverlay_AppCompat_ActionBar
:
Int
static
val
ThemeOverlay_AppCompat_Dark
:
Int
static
val
ThemeOverlay_AppCompat_Dark_ActionBar
:
Int
static
val
ThemeOverlay_AppCompat_Dialog
:
Int
static
val
ThemeOverlay_AppCompat_Dialog_Alert
:
Int
static
val
ThemeOverlay_AppCompat_Light
:
Int
static
val
ThemeOverlay_MaterialComponents
:
Int
static
val
ThemeOverlay_MaterialComponents_ActionBar
:
Int
static
val
ThemeOverlay_MaterialComponents_Dark
:
Int
static
val
ThemeOverlay_MaterialComponents_Dark_ActionBar
:
Int
static
val
ThemeOverlay_MaterialComponents_Dialog
:
Int
static
val
ThemeOverlay_MaterialComponents_Dialog_Alert
:
Int
static
val
ThemeOverlay_MaterialComponents_Light
:
Int
static
val
ThemeOverlay_MaterialComponents_TextInputEditText
:
Int
static
val
ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox
:
Int
static
val
ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense
:
Int
static
val
ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox
:
Int
static
val
ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense
:
Int
static
val
Theme_AppCompat
:
Int
static
val
Theme_AppCompat_CompactMenu
:
Int
static
val
Theme_AppCompat_DayNight
:
Int
static
val
Theme_AppCompat_DayNight_DarkActionBar
:
Int
static
val
Theme_AppCompat_DayNight_Dialog
:
Int
static
val
Theme_AppCompat_DayNight_DialogWhenLarge
:
Int
static
val
Theme_AppCompat_DayNight_Dialog_Alert
:
Int
static
val
Theme_AppCompat_DayNight_Dialog_MinWidth
:
Int
static
val
Theme_AppCompat_DayNight_NoActionBar
:
Int
static
val
Theme_AppCompat_Dialog
:
Int
static
val
Theme_AppCompat_DialogWhenLarge
:
Int
static
val
Theme_AppCompat_Dialog_Alert
:
Int
static
val
Theme_AppCompat_Dialog_MinWidth
:
Int
static
val
Theme_AppCompat_Light
:
Int
static
val
Theme_AppCompat_Light_DarkActionBar
:
Int
static
val
Theme_AppCompat_Light_Dialog
:
Int
static
val
Theme_AppCompat_Light_DialogWhenLarge
:
Int
static
val
Theme_AppCompat_Light_Dialog_Alert
:
Int
static
val
Theme_AppCompat_Light_Dialog_MinWidth
:
Int
static
val
Theme_AppCompat_Light_NoActionBar
:
Int
static
val
Theme_AppCompat_NoActionBar
:
Int
static
val
Theme_Design
:
Int
static
val
Theme_Design_BottomSheetDialog
:
Int
static
val
Theme_Design_Light
:
Int
static
val
Theme_Design_Light_BottomSheetDialog
:
Int
static
val
Theme_Design_Light_NoActionBar
:
Int
static
val
Theme_Design_NoActionBar
:
Int
static
val
Theme_MaterialComponents
:
Int
static
val
Theme_MaterialComponents_BottomSheetDialog
:
Int
static
val
Theme_MaterialComponents_Bridge
:
Int
static
val
Theme_MaterialComponents_CompactMenu
:
Int
static
val
Theme_MaterialComponents_Dialog
:
Int
static
val
Theme_MaterialComponents_DialogWhenLarge
:
Int
static
val
Theme_MaterialComponents_Dialog_Alert
:
Int
static
val
Theme_MaterialComponents_Dialog_MinWidth
:
Int
static
val
Theme_MaterialComponents_Light
:
Int
static
val
Theme_MaterialComponents_Light_BottomSheetDialog
:
Int
static
val
Theme_MaterialComponents_Light_Bridge
:
Int
static
val
Theme_MaterialComponents_Light_DarkActionBar
:
Int
static
val
Theme_MaterialComponents_Light_DarkActionBar_Bridge
:
Int
static
val
Theme_MaterialComponents_Light_Dialog
:
Int
static
val
Theme_MaterialComponents_Light_DialogWhenLarge
:
Int
static
val
Theme_MaterialComponents_Light_Dialog_Alert
:
Int
static
val
Theme_MaterialComponents_Light_Dialog_MinWidth
:
Int
static
val
Theme_MaterialComponents_Light_NoActionBar
:
Int
static
val
Theme_MaterialComponents_Light_NoActionBar_Bridge
:
Int
static
val
Theme_MaterialComponents_NoActionBar
:
Int
static
val
Theme_MaterialComponents_NoActionBar_Bridge
:
Int
static
val
Widget_AppCompat_ActionBar
:
Int
static
val
Widget_AppCompat_ActionBar_Solid
:
Int
static
val
Widget_AppCompat_ActionBar_TabBar
:
Int
static
val
Widget_AppCompat_ActionBar_TabText
:
Int
static
val
Widget_AppCompat_ActionBar_TabView
:
Int
static
val
Widget_AppCompat_ActionButton
:
Int
static
val
Widget_AppCompat_ActionButton_CloseMode
:
Int
static
val
Widget_AppCompat_ActionButton_Overflow
:
Int
static
val
Widget_AppCompat_ActionMode
:
Int
static
val
Widget_AppCompat_ActivityChooserView
:
Int
static
val
Widget_AppCompat_AutoCompleteTextView
:
Int
static
val
Widget_AppCompat_Button
:
Int
static
val
Widget_AppCompat_ButtonBar
:
Int
static
val
Widget_AppCompat_ButtonBar_AlertDialog
:
Int
static
val
Widget_AppCompat_Button_Borderless
:
Int
static
val
Widget_AppCompat_Button_Borderless_Colored
:
Int
static
val
Widget_AppCompat_Button_ButtonBar_AlertDialog
:
Int
static
val
Widget_AppCompat_Button_Colored
:
Int
static
val
Widget_AppCompat_Button_Small
:
Int
static
val
Widget_AppCompat_CompoundButton_CheckBox
:
Int
static
val
Widget_AppCompat_CompoundButton_RadioButton
:
Int
static
val
Widget_AppCompat_CompoundButton_Switch
:
Int
static
val
Widget_AppCompat_DrawerArrowToggle
:
Int
static
val
Widget_AppCompat_DropDownItem_Spinner
:
Int
static
val
Widget_AppCompat_EditText
:
Int
static
val
Widget_AppCompat_ImageButton
:
Int
static
val
Widget_AppCompat_Light_ActionBar
:
Int
static
val
Widget_AppCompat_Light_ActionBar_Solid
:
Int
static
val
Widget_AppCompat_Light_ActionBar_Solid_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabBar
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabBar_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabText
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabText_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabView
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabView_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionButton
:
Int
static
val
Widget_AppCompat_Light_ActionButton_CloseMode
:
Int
static
val
Widget_AppCompat_Light_ActionButton_Overflow
:
Int
static
val
Widget_AppCompat_Light_ActionMode_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActivityChooserView
:
Int
static
val
Widget_AppCompat_Light_AutoCompleteTextView
:
Int
static
val
Widget_AppCompat_Light_DropDownItem_Spinner
:
Int
static
val
Widget_AppCompat_Light_ListPopupWindow
:
Int
static
val
Widget_AppCompat_Light_ListView_DropDown
:
Int
static
val
Widget_AppCompat_Light_PopupMenu
:
Int
static
val
Widget_AppCompat_Light_PopupMenu_Overflow
:
Int
static
val
Widget_AppCompat_Light_SearchView
:
Int
static
val
Widget_AppCompat_Light_Spinner_DropDown_ActionBar
:
Int
static
val
Widget_AppCompat_ListMenuView
:
Int
static
val
Widget_AppCompat_ListPopupWindow
:
Int
static
val
Widget_AppCompat_ListView
:
Int
static
val
Widget_AppCompat_ListView_DropDown
:
Int
static
val
Widget_AppCompat_ListView_Menu
:
Int
static
val
Widget_AppCompat_PopupMenu
:
Int
static
val
Widget_AppCompat_PopupMenu_Overflow
:
Int
static
val
Widget_AppCompat_PopupWindow
:
Int
static
val
Widget_AppCompat_ProgressBar
:
Int
static
val
Widget_AppCompat_ProgressBar_Horizontal
:
Int
static
val
Widget_AppCompat_RatingBar
:
Int
static
val
Widget_AppCompat_RatingBar_Indicator
:
Int
static
val
Widget_AppCompat_RatingBar_Small
:
Int
static
val
Widget_AppCompat_SearchView
:
Int
static
val
Widget_AppCompat_SearchView_ActionBar
:
Int
static
val
Widget_AppCompat_SeekBar
:
Int
static
val
Widget_AppCompat_SeekBar_Discrete
:
Int
static
val
Widget_AppCompat_Spinner
:
Int
static
val
Widget_AppCompat_Spinner_DropDown
:
Int
static
val
Widget_AppCompat_Spinner_DropDown_ActionBar
:
Int
static
val
Widget_AppCompat_Spinner_Underlined
:
Int
static
val
Widget_AppCompat_TextView_SpinnerItem
:
Int
static
val
Widget_AppCompat_Toolbar
:
Int
static
val
Widget_AppCompat_Toolbar_Button_Navigation
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
static
val
Widget_Design_AppBarLayout
:
Int
static
val
Widget_Design_BottomNavigationView
:
Int
static
val
Widget_Design_BottomSheet_Modal
:
Int
static
val
Widget_Design_CollapsingToolbar
:
Int
static
val
Widget_Design_FloatingActionButton
:
Int
static
val
Widget_Design_NavigationView
:
Int
static
val
Widget_Design_ScrimInsetsFrameLayout
:
Int
static
val
Widget_Design_Snackbar
:
Int
static
val
Widget_Design_TabLayout
:
Int
static
val
Widget_Design_TextInputLayout
:
Int
static
val
Widget_MaterialComponents_BottomAppBar
:
Int
static
val
Widget_MaterialComponents_BottomAppBar_Colored
:
Int
static
val
Widget_MaterialComponents_BottomNavigationView
:
Int
static
val
Widget_MaterialComponents_BottomNavigationView_Colored
:
Int
static
val
Widget_MaterialComponents_BottomSheet_Modal
:
Int
static
val
Widget_MaterialComponents_Button
:
Int
static
val
Widget_MaterialComponents_Button_Icon
:
Int
static
val
Widget_MaterialComponents_Button_OutlinedButton
:
Int
static
val
Widget_MaterialComponents_Button_OutlinedButton_Icon
:
Int
static
val
Widget_MaterialComponents_Button_TextButton
:
Int
static
val
Widget_MaterialComponents_Button_TextButton_Dialog
:
Int
static
val
Widget_MaterialComponents_Button_TextButton_Dialog_Icon
:
Int
static
val
Widget_MaterialComponents_Button_TextButton_Icon
:
Int
static
val
Widget_MaterialComponents_Button_UnelevatedButton
:
Int
static
val
Widget_MaterialComponents_Button_UnelevatedButton_Icon
:
Int
static
val
Widget_MaterialComponents_CardView
:
Int
static
val
Widget_MaterialComponents_ChipGroup
:
Int
static
val
Widget_MaterialComponents_Chip_Action
:
Int
static
val
Widget_MaterialComponents_Chip_Choice
:
Int
static
val
Widget_MaterialComponents_Chip_Entry
:
Int
static
val
Widget_MaterialComponents_Chip_Filter
:
Int
static
val
Widget_MaterialComponents_FloatingActionButton
:
Int
static
val
Widget_MaterialComponents_NavigationView
:
Int
static
val
Widget_MaterialComponents_Snackbar
:
Int
static
val
Widget_MaterialComponents_Snackbar_FullWidth
:
Int
static
val
Widget_MaterialComponents_TabLayout
:
Int
static
val
Widget_MaterialComponents_TabLayout_Colored
:
Int
static
val
Widget_MaterialComponents_TextInputEditText_FilledBox
:
Int
static
val
Widget_MaterialComponents_TextInputEditText_FilledBox_Dense
:
Int
static
val
Widget_MaterialComponents_TextInputEditText_OutlinedBox
:
Int
static
val
Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense
:
Int
static
val
Widget_MaterialComponents_TextInputLayout_FilledBox
:
Int
static
val
Widget_MaterialComponents_TextInputLayout_FilledBox_Dense
:
Int
static
val
Widget_MaterialComponents_TextInputLayout_OutlinedBox
:
Int
static
val
Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense
:
Int
static
val
Widget_MaterialComponents_Toolbar
:
Int
static
val
Widget_Support_CoordinatorLayout
:
Int
class
styleable
Module Contents
static
val
ActionBar
:
IntArray
static
val
ActionBarLayout
:
IntArray
static
val
ActionBarLayout_android_layout_gravity
:
Int
static
val
ActionBar_background
:
Int
static
val
ActionBar_backgroundSplit
:
Int
static
val
ActionBar_backgroundStacked
:
Int
static
val
ActionBar_contentInsetEnd
:
Int
static
val
ActionBar_contentInsetEndWithActions
:
Int
static
val
ActionBar_contentInsetLeft
:
Int
static
val
ActionBar_contentInsetRight
:
Int
static
val
ActionBar_contentInsetStart
:
Int
static
val
ActionBar_contentInsetStartWithNavigation
:
Int
static
val
ActionBar_customNavigationLayout
:
Int
static
val
ActionBar_displayOptions
:
Int
static
val
ActionBar_divider
:
Int
static
val
ActionBar_elevation
:
Int
static
val
ActionBar_height
:
Int
static
val
ActionBar_hideOnContentScroll
:
Int
static
val
ActionBar_homeAsUpIndicator
:
Int
static
val
ActionBar_homeLayout
:
Int
static
val
ActionBar_icon
:
Int
static
val
ActionBar_indeterminateProgressStyle
:
Int
static
val
ActionBar_itemPadding
:
Int
static
val
ActionBar_logo
:
Int
static
val
ActionBar_navigationMode
:
Int
static
val
ActionBar_popupTheme
:
Int
static
val
ActionBar_progressBarPadding
:
Int
static
val
ActionBar_progressBarStyle
:
Int
static
val
ActionBar_subtitle
:
Int
static
val
ActionBar_subtitleTextStyle
:
Int
static
val
ActionBar_title
:
Int
static
val
ActionBar_titleTextStyle
:
Int
static
val
ActionMenuItemView
:
IntArray
static
val
ActionMenuItemView_android_minWidth
:
Int
static
val
ActionMode
:
IntArray
static
val
ActionMode_background
:
Int
static
val
ActionMode_backgroundSplit
:
Int
static
val
ActionMode_closeItemLayout
:
Int
static
val
ActionMode_height
:
Int
static
val
ActionMode_subtitleTextStyle
:
Int
static
val
ActionMode_titleTextStyle
:
Int
static
val
ActivityChooserView
:
IntArray
static
val
ActivityChooserView_expandActivityOverflowButtonDrawable
:
Int
static
val
ActivityChooserView_initialActivityCount
:
Int
static
val
AlertDialog
:
IntArray
static
val
AlertDialog_android_layout
:
Int
static
val
AlertDialog_buttonIconDimen
:
Int
static
val
AlertDialog_buttonPanelSideLayout
:
Int
static
val
AlertDialog_listItemLayout
:
Int
static
val
AlertDialog_listLayout
:
Int
static
val
AlertDialog_multiChoiceItemLayout
:
Int
static
val
AlertDialog_showTitle
:
Int
static
val
AlertDialog_singleChoiceItemLayout
:
Int
static
val
AppBarLayout
:
IntArray
static
val
AppBarLayoutStates
:
IntArray
static
val
AppBarLayoutStates_state_collapsed
:
Int
static
val
AppBarLayoutStates_state_collapsible
:
Int
static
val
AppBarLayoutStates_state_liftable
:
Int
static
val
AppBarLayoutStates_state_lifted
:
Int
static
val
AppBarLayout_Layout
:
IntArray
static
val
AppBarLayout_Layout_layout_scrollFlags
:
Int
static
val
AppBarLayout_Layout_layout_scrollInterpolator
:
Int
static
val
AppBarLayout_android_background
:
Int
static
val
AppBarLayout_android_keyboardNavigationCluster
:
Int
static
val
AppBarLayout_android_touchscreenBlocksFocus
:
Int
static
val
AppBarLayout_elevation
:
Int
static
val
AppBarLayout_expanded
:
Int
static
val
AppBarLayout_liftOnScroll
:
Int
static
val
AppCompatImageView
:
IntArray
static
val
AppCompatImageView_android_src
:
Int
static
val
AppCompatImageView_srcCompat
:
Int
static
val
AppCompatImageView_tint
:
Int
static
val
AppCompatImageView_tintMode
:
Int
static
val
AppCompatSeekBar
:
IntArray
static
val
AppCompatSeekBar_android_thumb
:
Int
static
val
AppCompatSeekBar_tickMark
:
Int
static
val
AppCompatSeekBar_tickMarkTint
:
Int
static
val
AppCompatSeekBar_tickMarkTintMode
:
Int
static
val
AppCompatTextHelper
:
IntArray
static
val
AppCompatTextHelper_android_drawableBottom
:
Int
static
val
AppCompatTextHelper_android_drawableEnd
:
Int
static
val
AppCompatTextHelper_android_drawableLeft
:
Int
static
val
AppCompatTextHelper_android_drawableRight
:
Int
static
val
AppCompatTextHelper_android_drawableStart
:
Int
static
val
AppCompatTextHelper_android_drawableTop
:
Int
static
val
AppCompatTextHelper_android_textAppearance
:
Int
static
val
AppCompatTextView
:
IntArray
static
val
AppCompatTextView_android_textAppearance
:
Int
static
val
AppCompatTextView_autoSizeMaxTextSize
:
Int
static
val
AppCompatTextView_autoSizeMinTextSize
:
Int
static
val
AppCompatTextView_autoSizePresetSizes
:
Int
static
val
AppCompatTextView_autoSizeStepGranularity
:
Int
static
val
AppCompatTextView_autoSizeTextType
:
Int
static
val
AppCompatTextView_firstBaselineToTopHeight
:
Int
static
val
AppCompatTextView_fontFamily
:
Int
static
val
AppCompatTextView_lastBaselineToBottomHeight
:
Int
static
val
AppCompatTextView_lineHeight
:
Int
static
val
AppCompatTextView_textAllCaps
:
Int
static
val
AppCompatTheme
:
IntArray
static
val
AppCompatTheme_actionBarDivider
:
Int
static
val
AppCompatTheme_actionBarItemBackground
:
Int
static
val
AppCompatTheme_actionBarPopupTheme
:
Int
static
val
AppCompatTheme_actionBarSize
:
Int
static
val
AppCompatTheme_actionBarSplitStyle
:
Int
static
val
AppCompatTheme_actionBarStyle
:
Int
static
val
AppCompatTheme_actionBarTabBarStyle
:
Int
static
val
AppCompatTheme_actionBarTabStyle
:
Int
static
val
AppCompatTheme_actionBarTabTextStyle
:
Int
static
val
AppCompatTheme_actionBarTheme
:
Int
static
val
AppCompatTheme_actionBarWidgetTheme
:
Int
static
val
AppCompatTheme_actionButtonStyle
:
Int
static
val
AppCompatTheme_actionDropDownStyle
:
Int
static
val
AppCompatTheme_actionMenuTextAppearance
:
Int
static
val
AppCompatTheme_actionMenuTextColor
:
Int
static
val
AppCompatTheme_actionModeBackground
:
Int
static
val
AppCompatTheme_actionModeCloseButtonStyle
:
Int
static
val
AppCompatTheme_actionModeCloseDrawable
:
Int
static
val
AppCompatTheme_actionModeCopyDrawable
:
Int
static
val
AppCompatTheme_actionModeCutDrawable
:
Int
static
val
AppCompatTheme_actionModeFindDrawable
:
Int
static
val
AppCompatTheme_actionModePasteDrawable
:
Int
static
val
AppCompatTheme_actionModePopupWindowStyle
:
Int
static
val
AppCompatTheme_actionModeSelectAllDrawable
:
Int
static
val
AppCompatTheme_actionModeShareDrawable
:
Int
static
val
AppCompatTheme_actionModeSplitBackground
:
Int
static
val
AppCompatTheme_actionModeStyle
:
Int
static
val
AppCompatTheme_actionModeWebSearchDrawable
:
Int
static
val
AppCompatTheme_actionOverflowButtonStyle
:
Int
static
val
AppCompatTheme_actionOverflowMenuStyle
:
Int
static
val
AppCompatTheme_activityChooserViewStyle
:
Int
static
val
AppCompatTheme_alertDialogButtonGroupStyle
:
Int
static
val
AppCompatTheme_alertDialogCenterButtons
:
Int
static
val
AppCompatTheme_alertDialogStyle
:
Int
static
val
AppCompatTheme_alertDialogTheme
:
Int
static
val
AppCompatTheme_android_windowAnimationStyle
:
Int
static
val
AppCompatTheme_android_windowIsFloating
:
Int
static
val
AppCompatTheme_autoCompleteTextViewStyle
:
Int
static
val
AppCompatTheme_borderlessButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarNegativeButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarNeutralButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarPositiveButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarStyle
:
Int
static
val
AppCompatTheme_buttonStyle
:
Int
static
val
AppCompatTheme_buttonStyleSmall
:
Int
static
val
AppCompatTheme_checkboxStyle
:
Int
static
val
AppCompatTheme_checkedTextViewStyle
:
Int
static
val
AppCompatTheme_colorAccent
:
Int
static
val
AppCompatTheme_colorBackgroundFloating
:
Int
static
val
AppCompatTheme_colorButtonNormal
:
Int
static
val
AppCompatTheme_colorControlActivated
:
Int
static
val
AppCompatTheme_colorControlHighlight
:
Int
static
val
AppCompatTheme_colorControlNormal
:
Int
static
val
AppCompatTheme_colorError
:
Int
static
val
AppCompatTheme_colorPrimary
:
Int
static
val
AppCompatTheme_colorPrimaryDark
:
Int
static
val
AppCompatTheme_colorSwitchThumbNormal
:
Int
static
val
AppCompatTheme_controlBackground
:
Int
static
val
AppCompatTheme_dialogCornerRadius
:
Int
static
val
AppCompatTheme_dialogPreferredPadding
:
Int
static
val
AppCompatTheme_dialogTheme
:
Int
static
val
AppCompatTheme_dividerHorizontal
:
Int
static
val
AppCompatTheme_dividerVertical
:
Int
static
val
AppCompatTheme_dropDownListViewStyle
:
Int
static
val
AppCompatTheme_dropdownListPreferredItemHeight
:
Int
static
val
AppCompatTheme_editTextBackground
:
Int
static
val
AppCompatTheme_editTextColor
:
Int
static
val
AppCompatTheme_editTextStyle
:
Int
static
val
AppCompatTheme_homeAsUpIndicator
:
Int
static
val
AppCompatTheme_imageButtonStyle
:
Int
static
val
AppCompatTheme_listChoiceBackgroundIndicator
:
Int
static
val
AppCompatTheme_listDividerAlertDialog
:
Int
static
val
AppCompatTheme_listMenuViewStyle
:
Int
static
val
AppCompatTheme_listPopupWindowStyle
:
Int
static
val
AppCompatTheme_listPreferredItemHeight
:
Int
static
val
AppCompatTheme_listPreferredItemHeightLarge
:
Int
static
val
AppCompatTheme_listPreferredItemHeightSmall
:
Int
static
val
AppCompatTheme_listPreferredItemPaddingLeft
:
Int
static
val
AppCompatTheme_listPreferredItemPaddingRight
:
Int
static
val
AppCompatTheme_panelBackground
:
Int
static
val
AppCompatTheme_panelMenuListTheme
:
Int
static
val
AppCompatTheme_panelMenuListWidth
:
Int
static
val
AppCompatTheme_popupMenuStyle
:
Int
static
val
AppCompatTheme_popupWindowStyle
:
Int
static
val
AppCompatTheme_radioButtonStyle
:
Int
static
val
AppCompatTheme_ratingBarStyle
:
Int
static
val
AppCompatTheme_ratingBarStyleIndicator
:
Int
static
val
AppCompatTheme_ratingBarStyleSmall
:
Int
static
val
AppCompatTheme_searchViewStyle
:
Int
static
val
AppCompatTheme_seekBarStyle
:
Int
static
val
AppCompatTheme_selectableItemBackground
:
Int
static
val
AppCompatTheme_selectableItemBackgroundBorderless
:
Int
static
val
AppCompatTheme_spinnerDropDownItemStyle
:
Int
static
val
AppCompatTheme_spinnerStyle
:
Int
static
val
AppCompatTheme_switchStyle
:
Int
static
val
AppCompatTheme_textAppearanceLargePopupMenu
:
Int
static
val
AppCompatTheme_textAppearanceListItem
:
Int
static
val
AppCompatTheme_textAppearanceListItemSecondary
:
Int
static
val
AppCompatTheme_textAppearanceListItemSmall
:
Int
static
val
AppCompatTheme_textAppearancePopupMenuHeader
:
Int
static
val
AppCompatTheme_textAppearanceSearchResultSubtitle
:
Int
static
val
AppCompatTheme_textAppearanceSearchResultTitle
:
Int
static
val
AppCompatTheme_textAppearanceSmallPopupMenu
:
Int
static
val
AppCompatTheme_textColorAlertDialogListItem
:
Int
static
val
AppCompatTheme_textColorSearchUrl
:
Int
static
val
AppCompatTheme_toolbarNavigationButtonStyle
:
Int
static
val
AppCompatTheme_toolbarStyle
:
Int
static
val
AppCompatTheme_tooltipForegroundColor
:
Int
static
val
AppCompatTheme_tooltipFrameBackground
:
Int
static
val
AppCompatTheme_viewInflaterClass
:
Int
static
val
AppCompatTheme_windowActionBar
:
Int
static
val
AppCompatTheme_windowActionBarOverlay
:
Int
static
val
AppCompatTheme_windowActionModeOverlay
:
Int
static
val
AppCompatTheme_windowFixedHeightMajor
:
Int
static
val
AppCompatTheme_windowFixedHeightMinor
:
Int
static
val
AppCompatTheme_windowFixedWidthMajor
:
Int
static
val
AppCompatTheme_windowFixedWidthMinor
:
Int
static
val
AppCompatTheme_windowMinWidthMajor
:
Int
static
val
AppCompatTheme_windowMinWidthMinor
:
Int
static
val
AppCompatTheme_windowNoTitle
:
Int
static
val
BottomAppBar
:
IntArray
static
val
BottomAppBar_backgroundTint
:
Int
static
val
BottomAppBar_fabAlignmentMode
:
Int
static
val
BottomAppBar_fabCradleMargin
:
Int
static
val
BottomAppBar_fabCradleRoundedCornerRadius
:
Int
static
val
BottomAppBar_fabCradleVerticalOffset
:
Int
static
val
BottomAppBar_hideOnScroll
:
Int
static
val
BottomNavigationView
:
IntArray
static
val
BottomNavigationView_elevation
:
Int
static
val
BottomNavigationView_itemBackground
:
Int
static
val
BottomNavigationView_itemHorizontalTranslationEnabled
:
Int
static
val
BottomNavigationView_itemIconSize
:
Int
static
val
BottomNavigationView_itemIconTint
:
Int
static
val
BottomNavigationView_itemTextAppearanceActive
:
Int
static
val
BottomNavigationView_itemTextAppearanceInactive
:
Int
static
val
BottomNavigationView_itemTextColor
:
Int
static
val
BottomNavigationView_labelVisibilityMode
:
Int
static
val
BottomNavigationView_menu
:
Int
static
val
BottomSheetBehavior_Layout
:
IntArray
static
val
BottomSheetBehavior_Layout_behavior_fitToContents
:
Int
static
val
BottomSheetBehavior_Layout_behavior_hideable
:
Int
static
val
BottomSheetBehavior_Layout_behavior_peekHeight
:
Int
static
val
BottomSheetBehavior_Layout_behavior_skipCollapsed
:
Int
static
val
ButtonBarLayout
:
IntArray
static
val
ButtonBarLayout_allowStacking
:
Int
static
val
CardView
:
IntArray
static
val
CardView_android_minHeight
:
Int
static
val
CardView_android_minWidth
:
Int
static
val
CardView_cardBackgroundColor
:
Int
static
val
CardView_cardCornerRadius
:
Int
static
val
CardView_cardElevation
:
Int
static
val
CardView_cardMaxElevation
:
Int
static
val
CardView_cardPreventCornerOverlap
:
Int
static
val
CardView_cardUseCompatPadding
:
Int
static
val
CardView_contentPadding
:
Int
static
val
CardView_contentPaddingBottom
:
Int
static
val
CardView_contentPaddingLeft
:
Int
static
val
CardView_contentPaddingRight
:
Int
static
val
CardView_contentPaddingTop
:
Int
static
val
Chip
:
IntArray
static
val
ChipGroup
:
IntArray
static
val
ChipGroup_checkedChip
:
Int
static
val
ChipGroup_chipSpacing
:
Int
static
val
ChipGroup_chipSpacingHorizontal
:
Int
static
val
ChipGroup_chipSpacingVertical
:
Int
static
val
ChipGroup_singleLine
:
Int
static
val
ChipGroup_singleSelection
:
Int
static
val
Chip_android_checkable
:
Int
static
val
Chip_android_ellipsize
:
Int
static
val
Chip_android_maxWidth
:
Int
static
val
Chip_android_text
:
Int
static
val
Chip_android_textAppearance
:
Int
static
val
Chip_checkedIcon
:
Int
static
val
Chip_checkedIconEnabled
:
Int
static
val
Chip_checkedIconVisible
:
Int
static
val
Chip_chipBackgroundColor
:
Int
static
val
Chip_chipCornerRadius
:
Int
static
val
Chip_chipEndPadding
:
Int
static
val
Chip_chipIcon
:
Int
static
val
Chip_chipIconEnabled
:
Int
static
val
Chip_chipIconSize
:
Int
static
val
Chip_chipIconTint
:
Int
static
val
Chip_chipIconVisible
:
Int
static
val
Chip_chipMinHeight
:
Int
static
val
Chip_chipStartPadding
:
Int
static
val
Chip_chipStrokeColor
:
Int
static
val
Chip_chipStrokeWidth
:
Int
static
val
Chip_closeIcon
:
Int
static
val
Chip_closeIconEnabled
:
Int
static
val
Chip_closeIconEndPadding
:
Int
static
val
Chip_closeIconSize
:
Int
static
val
Chip_closeIconStartPadding
:
Int
static
val
Chip_closeIconTint
:
Int
static
val
Chip_closeIconVisible
:
Int
static
val
Chip_hideMotionSpec
:
Int
static
val
Chip_iconEndPadding
:
Int
static
val
Chip_iconStartPadding
:
Int
static
val
Chip_rippleColor
:
Int
static
val
Chip_showMotionSpec
:
Int
static
val
Chip_textEndPadding
:
Int
static
val
Chip_textStartPadding
:
Int
static
val
CollapsingToolbarLayout
:
IntArray
static
val
CollapsingToolbarLayout_Layout
:
IntArray
static
val
CollapsingToolbarLayout_Layout_layout_collapseMode
:
Int
static
val
CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier
:
Int
static
val
CollapsingToolbarLayout_collapsedTitleGravity
:
Int
static
val
CollapsingToolbarLayout_collapsedTitleTextAppearance
:
Int
static
val
CollapsingToolbarLayout_contentScrim
:
Int
static
val
CollapsingToolbarLayout_expandedTitleGravity
:
Int
static
val
CollapsingToolbarLayout_expandedTitleMargin
:
Int
static
val
CollapsingToolbarLayout_expandedTitleMarginBottom
:
Int
static
val
CollapsingToolbarLayout_expandedTitleMarginEnd
:
Int
static
val
CollapsingToolbarLayout_expandedTitleMarginStart
:
Int
static
val
CollapsingToolbarLayout_expandedTitleMarginTop
:
Int
static
val
CollapsingToolbarLayout_expandedTitleTextAppearance
:
Int
static
val
CollapsingToolbarLayout_scrimAnimationDuration
:
Int
static
val
CollapsingToolbarLayout_scrimVisibleHeightTrigger
:
Int
static
val
CollapsingToolbarLayout_statusBarScrim
:
Int
static
val
CollapsingToolbarLayout_title
:
Int
static
val
CollapsingToolbarLayout_titleEnabled
:
Int
static
val
CollapsingToolbarLayout_toolbarId
:
Int
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
CompoundButton
:
IntArray
static
val
CompoundButton_android_button
:
Int
static
val
CompoundButton_buttonTint
:
Int
static
val
CompoundButton_buttonTintMode
:
Int
static
val
CoordinatorLayout
:
IntArray
static
val
CoordinatorLayout_Layout
:
IntArray
static
val
CoordinatorLayout_Layout_android_layout_gravity
:
Int
static
val
CoordinatorLayout_Layout_layout_anchor
:
Int
static
val
CoordinatorLayout_Layout_layout_anchorGravity
:
Int
static
val
CoordinatorLayout_Layout_layout_behavior
:
Int
static
val
CoordinatorLayout_Layout_layout_dodgeInsetEdges
:
Int
static
val
CoordinatorLayout_Layout_layout_insetEdge
:
Int
static
val
CoordinatorLayout_Layout_layout_keyline
:
Int
static
val
CoordinatorLayout_keylines
:
Int
static
val
CoordinatorLayout_statusBarBackground
:
Int
static
val
DesignTheme
:
IntArray
static
val
DesignTheme_bottomSheetDialogTheme
:
Int
static
val
DesignTheme_bottomSheetStyle
:
Int
static
val
DrawerArrowToggle
:
IntArray
static
val
DrawerArrowToggle_arrowHeadLength
:
Int
static
val
DrawerArrowToggle_arrowShaftLength
:
Int
static
val
DrawerArrowToggle_barLength
:
Int
static
val
DrawerArrowToggle_color
:
Int
static
val
DrawerArrowToggle_drawableSize
:
Int
static
val
DrawerArrowToggle_gapBetweenBars
:
Int
static
val
DrawerArrowToggle_spinBars
:
Int
static
val
DrawerArrowToggle_thickness
:
Int
static
val
FloatingActionButton
:
IntArray
static
val
FloatingActionButton_Behavior_Layout
:
IntArray
static
val
FloatingActionButton_Behavior_Layout_behavior_autoHide
:
Int
static
val
FloatingActionButton_backgroundTint
:
Int
static
val
FloatingActionButton_backgroundTintMode
:
Int
static
val
FloatingActionButton_borderWidth
:
Int
static
val
FloatingActionButton_elevation
:
Int
static
val
FloatingActionButton_fabCustomSize
:
Int
static
val
FloatingActionButton_fabSize
:
Int
static
val
FloatingActionButton_hideMotionSpec
:
Int
static
val
FloatingActionButton_hoveredFocusedTranslationZ
:
Int
static
val
FloatingActionButton_maxImageSize
:
Int
static
val
FloatingActionButton_pressedTranslationZ
:
Int
static
val
FloatingActionButton_rippleColor
:
Int
static
val
FloatingActionButton_showMotionSpec
:
Int
static
val
FloatingActionButton_useCompatPadding
:
Int
static
val
FlowLayout
:
IntArray
static
val
FlowLayout_itemSpacing
:
Int
static
val
FlowLayout_lineSpacing
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
ForegroundLinearLayout
:
IntArray
static
val
ForegroundLinearLayout_android_foreground
:
Int
static
val
ForegroundLinearLayout_android_foregroundGravity
:
Int
static
val
ForegroundLinearLayout_foregroundInsidePadding
:
Int
static
val
LinearLayoutCompat
:
IntArray
static
val
LinearLayoutCompat_Layout
:
IntArray
static
val
LinearLayoutCompat_Layout_android_layout_gravity
:
Int
static
val
LinearLayoutCompat_Layout_android_layout_height
:
Int
static
val
LinearLayoutCompat_Layout_android_layout_weight
:
Int
static
val
LinearLayoutCompat_Layout_android_layout_width
:
Int
static
val
LinearLayoutCompat_android_baselineAligned
:
Int
static
val
LinearLayoutCompat_android_baselineAlignedChildIndex
:
Int
static
val
LinearLayoutCompat_android_gravity
:
Int
static
val
LinearLayoutCompat_android_orientation
:
Int
static
val
LinearLayoutCompat_android_weightSum
:
Int
static
val
LinearLayoutCompat_divider
:
Int
static
val
LinearLayoutCompat_dividerPadding
:
Int
static
val
LinearLayoutCompat_measureWithLargestChild
:
Int
static
val
LinearLayoutCompat_showDividers
:
Int
static
val
ListPopupWindow
:
IntArray
static
val
ListPopupWindow_android_dropDownHorizontalOffset
:
Int
static
val
ListPopupWindow_android_dropDownVerticalOffset
:
Int
static
val
MaterialButton
:
IntArray
static
val
MaterialButton_android_insetBottom
:
Int
static
val
MaterialButton_android_insetLeft
:
Int
static
val
MaterialButton_android_insetRight
:
Int
static
val
MaterialButton_android_insetTop
:
Int
static
val
MaterialButton_backgroundTint
:
Int
static
val
MaterialButton_backgroundTintMode
:
Int
static
val
MaterialButton_cornerRadius
:
Int
static
val
MaterialButton_icon
:
Int
static
val
MaterialButton_iconGravity
:
Int
static
val
MaterialButton_iconPadding
:
Int
static
val
MaterialButton_iconSize
:
Int
static
val
MaterialButton_iconTint
:
Int
static
val
MaterialButton_iconTintMode
:
Int
static
val
MaterialButton_rippleColor
:
Int
static
val
MaterialButton_strokeColor
:
Int
static
val
MaterialButton_strokeWidth
:
Int
static
val
MaterialCardView
:
IntArray
static
val
MaterialCardView_strokeColor
:
Int
static
val
MaterialCardView_strokeWidth
:
Int
static
val
MaterialComponentsTheme
:
IntArray
static
val
MaterialComponentsTheme_bottomSheetDialogTheme
:
Int
static
val
MaterialComponentsTheme_bottomSheetStyle
:
Int
static
val
MaterialComponentsTheme_chipGroupStyle
:
Int
static
val
MaterialComponentsTheme_chipStandaloneStyle
:
Int
static
val
MaterialComponentsTheme_chipStyle
:
Int
static
val
MaterialComponentsTheme_colorAccent
:
Int
static
val
MaterialComponentsTheme_colorBackgroundFloating
:
Int
static
val
MaterialComponentsTheme_colorPrimary
:
Int
static
val
MaterialComponentsTheme_colorPrimaryDark
:
Int
static
val
MaterialComponentsTheme_colorSecondary
:
Int
static
val
MaterialComponentsTheme_editTextStyle
:
Int
static
val
MaterialComponentsTheme_floatingActionButtonStyle
:
Int
static
val
MaterialComponentsTheme_materialButtonStyle
:
Int
static
val
MaterialComponentsTheme_materialCardViewStyle
:
Int
static
val
MaterialComponentsTheme_navigationViewStyle
:
Int
static
val
MaterialComponentsTheme_scrimBackground
:
Int
static
val
MaterialComponentsTheme_snackbarButtonStyle
:
Int
static
val
MaterialComponentsTheme_tabStyle
:
Int
static
val
MaterialComponentsTheme_textAppearanceBody1
:
Int
static
val
MaterialComponentsTheme_textAppearanceBody2
:
Int
static
val
MaterialComponentsTheme_textAppearanceButton
:
Int
static
val
MaterialComponentsTheme_textAppearanceCaption
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline1
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline2
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline3
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline4
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline5
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline6
:
Int
static
val
MaterialComponentsTheme_textAppearanceOverline
:
Int
static
val
MaterialComponentsTheme_textAppearanceSubtitle1
:
Int
static
val
MaterialComponentsTheme_textAppearanceSubtitle2
:
Int
static
val
MaterialComponentsTheme_textInputStyle
:
Int
static
val
MenuGroup
:
IntArray
static
val
MenuGroup_android_checkableBehavior
:
Int
static
val
MenuGroup_android_enabled
:
Int
static
val
MenuGroup_android_id
:
Int
static
val
MenuGroup_android_menuCategory
:
Int
static
val
MenuGroup_android_orderInCategory
:
Int
static
val
MenuGroup_android_visible
:
Int
static
val
MenuItem
:
IntArray
static
val
MenuItem_actionLayout
:
Int
static
val
MenuItem_actionProviderClass
:
Int
static
val
MenuItem_actionViewClass
:
Int
static
val
MenuItem_alphabeticModifiers
:
Int
static
val
MenuItem_android_alphabeticShortcut
:
Int
static
val
MenuItem_android_checkable
:
Int
static
val
MenuItem_android_checked
:
Int
static
val
MenuItem_android_enabled
:
Int
static
val
MenuItem_android_icon
:
Int
static
val
MenuItem_android_id
:
Int
static
val
MenuItem_android_menuCategory
:
Int
static
val
MenuItem_android_numericShortcut
:
Int
static
val
MenuItem_android_onClick
:
Int
static
val
MenuItem_android_orderInCategory
:
Int
static
val
MenuItem_android_title
:
Int
static
val
MenuItem_android_titleCondensed
:
Int
static
val
MenuItem_android_visible
:
Int
static
val
MenuItem_contentDescription
:
Int
static
val
MenuItem_iconTint
:
Int
static
val
MenuItem_iconTintMode
:
Int
static
val
MenuItem_numericModifiers
:
Int
static
val
MenuItem_showAsAction
:
Int
static
val
MenuItem_tooltipText
:
Int
static
val
MenuView
:
IntArray
static
val
MenuView_android_headerBackground
:
Int
static
val
MenuView_android_horizontalDivider
:
Int
static
val
MenuView_android_itemBackground
:
Int
static
val
MenuView_android_itemIconDisabledAlpha
:
Int
static
val
MenuView_android_itemTextAppearance
:
Int
static
val
MenuView_android_verticalDivider
:
Int
static
val
MenuView_android_windowAnimationStyle
:
Int
static
val
MenuView_preserveIconSpacing
:
Int
static
val
MenuView_subMenuArrow
:
Int
static
val
NavigationView
:
IntArray
static
val
NavigationView_android_background
:
Int
static
val
NavigationView_android_fitsSystemWindows
:
Int
static
val
NavigationView_android_maxWidth
:
Int
static
val
NavigationView_elevation
:
Int
static
val
NavigationView_headerLayout
:
Int
static
val
NavigationView_itemBackground
:
Int
static
val
NavigationView_itemHorizontalPadding
:
Int
static
val
NavigationView_itemIconPadding
:
Int
static
val
NavigationView_itemIconTint
:
Int
static
val
NavigationView_itemTextAppearance
:
Int
static
val
NavigationView_itemTextColor
:
Int
static
val
NavigationView_menu
:
Int
static
val
PopupWindow
:
IntArray
static
val
PopupWindowBackgroundState
:
IntArray
static
val
PopupWindowBackgroundState_state_above_anchor
:
Int
static
val
PopupWindow_android_popupAnimationStyle
:
Int
static
val
PopupWindow_android_popupBackground
:
Int
static
val
PopupWindow_overlapAnchor
:
Int
static
val
RecycleListView
:
IntArray
static
val
RecycleListView_paddingBottomNoButtons
:
Int
static
val
RecycleListView_paddingTopNoTitle
:
Int
static
val
RecyclerView
:
IntArray
static
val
RecyclerView_android_descendantFocusability
:
Int
static
val
RecyclerView_android_orientation
:
Int
static
val
RecyclerView_fastScrollEnabled
:
Int
static
val
RecyclerView_fastScrollHorizontalThumbDrawable
:
Int
static
val
RecyclerView_fastScrollHorizontalTrackDrawable
:
Int
static
val
RecyclerView_fastScrollVerticalThumbDrawable
:
Int
static
val
RecyclerView_fastScrollVerticalTrackDrawable
:
Int
static
val
RecyclerView_layoutManager
:
Int
static
val
RecyclerView_reverseLayout
:
Int
static
val
RecyclerView_spanCount
:
Int
static
val
RecyclerView_stackFromEnd
:
Int
static
val
ScrimInsetsFrameLayout
:
IntArray
static
val
ScrimInsetsFrameLayout_insetForeground
:
Int
static
val
ScrollingViewBehavior_Layout
:
IntArray
static
val
ScrollingViewBehavior_Layout_behavior_overlapTop
:
Int
static
val
SearchView
:
IntArray
static
val
SearchView_android_focusable
:
Int
static
val
SearchView_android_imeOptions
:
Int
static
val
SearchView_android_inputType
:
Int
static
val
SearchView_android_maxWidth
:
Int
static
val
SearchView_closeIcon
:
Int
static
val
SearchView_commitIcon
:
Int
static
val
SearchView_defaultQueryHint
:
Int
static
val
SearchView_goIcon
:
Int
static
val
SearchView_iconifiedByDefault
:
Int
static
val
SearchView_layout
:
Int
static
val
SearchView_queryBackground
:
Int
static
val
SearchView_queryHint
:
Int
static
val
SearchView_searchHintIcon
:
Int
static
val
SearchView_searchIcon
:
Int
static
val
SearchView_submitBackground
:
Int
static
val
SearchView_suggestionRowLayout
:
Int
static
val
SearchView_voiceIcon
:
Int
static
val
Snackbar
:
IntArray
static
val
SnackbarLayout
:
IntArray
static
val
SnackbarLayout_android_maxWidth
:
Int
static
val
SnackbarLayout_elevation
:
Int
static
val
SnackbarLayout_maxActionInlineWidth
:
Int
static
val
Snackbar_snackbarButtonStyle
:
Int
static
val
Snackbar_snackbarStyle
:
Int
static
val
Spinner
:
IntArray
static
val
Spinner_android_dropDownWidth
:
Int
static
val
Spinner_android_entries
:
Int
static
val
Spinner_android_popupBackground
:
Int
static
val
Spinner_android_prompt
:
Int
static
val
Spinner_popupTheme
:
Int
static
val
SwitchCompat
:
IntArray
static
val
SwitchCompat_android_textOff
:
Int
static
val
SwitchCompat_android_textOn
:
Int
static
val
SwitchCompat_android_thumb
:
Int
static
val
SwitchCompat_showText
:
Int
static
val
SwitchCompat_splitTrack
:
Int
static
val
SwitchCompat_switchMinWidth
:
Int
static
val
SwitchCompat_switchPadding
:
Int
static
val
SwitchCompat_switchTextAppearance
:
Int
static
val
SwitchCompat_thumbTextPadding
:
Int
static
val
SwitchCompat_thumbTint
:
Int
static
val
SwitchCompat_thumbTintMode
:
Int
static
val
SwitchCompat_track
:
Int
static
val
SwitchCompat_trackTint
:
Int
static
val
SwitchCompat_trackTintMode
:
Int
static
val
TabItem
:
IntArray
static
val
TabItem_android_icon
:
Int
static
val
TabItem_android_layout
:
Int
static
val
TabItem_android_text
:
Int
static
val
TabLayout
:
IntArray
static
val
TabLayout_tabBackground
:
Int
static
val
TabLayout_tabContentStart
:
Int
static
val
TabLayout_tabGravity
:
Int
static
val
TabLayout_tabIconTint
:
Int
static
val
TabLayout_tabIconTintMode
:
Int
static
val
TabLayout_tabIndicator
:
Int
static
val
TabLayout_tabIndicatorAnimationDuration
:
Int
static
val
TabLayout_tabIndicatorColor
:
Int
static
val
TabLayout_tabIndicatorFullWidth
:
Int
static
val
TabLayout_tabIndicatorGravity
:
Int
static
val
TabLayout_tabIndicatorHeight
:
Int
static
val
TabLayout_tabInlineLabel
:
Int
static
val
TabLayout_tabMaxWidth
:
Int
static
val
TabLayout_tabMinWidth
:
Int
static
val
TabLayout_tabMode
:
Int
static
val
TabLayout_tabPadding
:
Int
static
val
TabLayout_tabPaddingBottom
:
Int
static
val
TabLayout_tabPaddingEnd
:
Int
static
val
TabLayout_tabPaddingStart
:
Int
static
val
TabLayout_tabPaddingTop
:
Int
static
val
TabLayout_tabRippleColor
:
Int
static
val
TabLayout_tabSelectedTextColor
:
Int
static
val
TabLayout_tabTextAppearance
:
Int
static
val
TabLayout_tabTextColor
:
Int
static
val
TabLayout_tabUnboundedRipple
:
Int
static
val
TextAppearance
:
IntArray
static
val
TextAppearance_android_fontFamily
:
Int
static
val
TextAppearance_android_shadowColor
:
Int
static
val
TextAppearance_android_shadowDx
:
Int
static
val
TextAppearance_android_shadowDy
:
Int
static
val
TextAppearance_android_shadowRadius
:
Int
static
val
TextAppearance_android_textColor
:
Int
static
val
TextAppearance_android_textColorHint
:
Int
static
val
TextAppearance_android_textColorLink
:
Int
static
val
TextAppearance_android_textSize
:
Int
static
val
TextAppearance_android_textStyle
:
Int
static
val
TextAppearance_android_typeface
:
Int
static
val
TextAppearance_fontFamily
:
Int
static
val
TextAppearance_textAllCaps
:
Int
static
val
TextInputLayout
:
IntArray
static
val
TextInputLayout_android_hint
:
Int
static
val
TextInputLayout_android_textColorHint
:
Int
static
val
TextInputLayout_boxBackgroundColor
:
Int
static
val
TextInputLayout_boxBackgroundMode
:
Int
static
val
TextInputLayout_boxCollapsedPaddingTop
:
Int
static
val
TextInputLayout_boxCornerRadiusBottomEnd
:
Int
static
val
TextInputLayout_boxCornerRadiusBottomStart
:
Int
static
val
TextInputLayout_boxCornerRadiusTopEnd
:
Int
static
val
TextInputLayout_boxCornerRadiusTopStart
:
Int
static
val
TextInputLayout_boxStrokeColor
:
Int
static
val
TextInputLayout_boxStrokeWidth
:
Int
static
val
TextInputLayout_counterEnabled
:
Int
static
val
TextInputLayout_counterMaxLength
:
Int
static
val
TextInputLayout_counterOverflowTextAppearance
:
Int
static
val
TextInputLayout_counterTextAppearance
:
Int
static
val
TextInputLayout_errorEnabled
:
Int
static
val
TextInputLayout_errorTextAppearance
:
Int
static
val
TextInputLayout_helperText
:
Int
static
val
TextInputLayout_helperTextEnabled
:
Int
static
val
TextInputLayout_helperTextTextAppearance
:
Int
static
val
TextInputLayout_hintAnimationEnabled
:
Int
static
val
TextInputLayout_hintEnabled
:
Int
static
val
TextInputLayout_hintTextAppearance
:
Int
static
val
TextInputLayout_passwordToggleContentDescription
:
Int
static
val
TextInputLayout_passwordToggleDrawable
:
Int
static
val
TextInputLayout_passwordToggleEnabled
:
Int
static
val
TextInputLayout_passwordToggleTint
:
Int
static
val
TextInputLayout_passwordToggleTintMode
:
Int
static
val
ThemeEnforcement
:
IntArray
static
val
ThemeEnforcement_android_textAppearance
:
Int
static
val
ThemeEnforcement_enforceMaterialTheme
:
Int
static
val
ThemeEnforcement_enforceTextAppearance
:
Int
static
val
Toolbar
:
IntArray
static
val
Toolbar_android_gravity
:
Int
static
val
Toolbar_android_minHeight
:
Int
static
val
Toolbar_buttonGravity
:
Int
static
val
Toolbar_collapseContentDescription
:
Int
static
val
Toolbar_collapseIcon
:
Int
static
val
Toolbar_contentInsetEnd
:
Int
static
val
Toolbar_contentInsetEndWithActions
:
Int
static
val
Toolbar_contentInsetLeft
:
Int
static
val
Toolbar_contentInsetRight
:
Int
static
val
Toolbar_contentInsetStart
:
Int
static
val
Toolbar_contentInsetStartWithNavigation
:
Int
static
val
Toolbar_logo
:
Int
static
val
Toolbar_logoDescription
:
Int
static
val
Toolbar_maxButtonHeight
:
Int
static
val
Toolbar_navigationContentDescription
:
Int
static
val
Toolbar_navigationIcon
:
Int
static
val
Toolbar_popupTheme
:
Int
static
val
Toolbar_subtitle
:
Int
static
val
Toolbar_subtitleTextAppearance
:
Int
static
val
Toolbar_subtitleTextColor
:
Int
static
val
Toolbar_title
:
Int
static
val
Toolbar_titleMargin
:
Int
static
val
Toolbar_titleMarginBottom
:
Int
static
val
Toolbar_titleMarginEnd
:
Int
static
val
Toolbar_titleMarginStart
:
Int
static
val
Toolbar_titleMarginTop
:
Int
static
val
Toolbar_titleMargins
:
Int
static
val
Toolbar_titleTextAppearance
:
Int
static
val
Toolbar_titleTextColor
:
Int
static
val
View
:
IntArray
static
val
ViewBackgroundHelper
:
IntArray
static
val
ViewBackgroundHelper_android_background
:
Int
static
val
ViewBackgroundHelper_backgroundTint
:
Int
static
val
ViewBackgroundHelper_backgroundTintMode
:
Int
static
val
ViewStubCompat
:
IntArray
static
val
ViewStubCompat_android_id
:
Int
static
val
ViewStubCompat_android_inflatedId
:
Int
static
val
ViewStubCompat_android_layout
:
Int
static
val
View_android_focusable
:
Int
static
val
View_android_theme
:
Int
static
val
View_paddingEnd
:
Int
static
val
View_paddingStart
:
Int
static
val
View_theme
:
Int
class
R
Module Contents
class
anim
Module Contents
static
val
abc_fade_in
:
Int
static
val
abc_fade_out
:
Int
static
val
abc_grow_fade_in_from_bottom
:
Int
static
val
abc_popup_enter
:
Int
static
val
abc_popup_exit
:
Int
static
val
abc_shrink_fade_out_from_bottom
:
Int
static
val
abc_slide_in_bottom
:
Int
static
val
abc_slide_in_top
:
Int
static
val
abc_slide_out_bottom
:
Int
static
val
abc_slide_out_top
:
Int
static
val
abc_tooltip_enter
:
Int
static
val
abc_tooltip_exit
:
Int
static
val
design_bottom_sheet_slide_in
:
Int
static
val
design_bottom_sheet_slide_out
:
Int
static
val
design_snackbar_in
:
Int
static
val
design_snackbar_out
:
Int
class
animator
Module Contents
static
val
design_appbar_state_list_animator
:
Int
static
val
design_fab_hide_motion_spec
:
Int
static
val
design_fab_show_motion_spec
:
Int
static
val
mtrl_btn_state_list_anim
:
Int
static
val
mtrl_btn_unelevated_state_list_anim
:
Int
static
val
mtrl_chip_state_list_anim
:
Int
static
val
mtrl_fab_hide_motion_spec
:
Int
static
val
mtrl_fab_show_motion_spec
:
Int
static
val
mtrl_fab_transformation_sheet_collapse_spec
:
Int
static
val
mtrl_fab_transformation_sheet_expand_spec
:
Int
class
attr
Module Contents
static
val
actionBarDivider
:
Int
static
val
actionBarItemBackground
:
Int
static
val
actionBarPopupTheme
:
Int
static
val
actionBarSize
:
Int
static
val
actionBarSplitStyle
:
Int
static
val
actionBarStyle
:
Int
static
val
actionBarTabBarStyle
:
Int
static
val
actionBarTabStyle
:
Int
static
val
actionBarTabTextStyle
:
Int
static
val
actionBarTheme
:
Int
static
val
actionBarWidgetTheme
:
Int
static
val
actionButtonStyle
:
Int
static
val
actionDropDownStyle
:
Int
static
val
actionLayout
:
Int
static
val
actionMenuTextAppearance
:
Int
static
val
actionMenuTextColor
:
Int
static
val
actionModeBackground
:
Int
static
val
actionModeCloseButtonStyle
:
Int
static
val
actionModeCloseDrawable
:
Int
static
val
actionModeCopyDrawable
:
Int
static
val
actionModeCutDrawable
:
Int
static
val
actionModeFindDrawable
:
Int
static
val
actionModePasteDrawable
:
Int
static
val
actionModePopupWindowStyle
:
Int
static
val
actionModeSelectAllDrawable
:
Int
static
val
actionModeShareDrawable
:
Int
static
val
actionModeSplitBackground
:
Int
static
val
actionModeStyle
:
Int
static
val
actionModeWebSearchDrawable
:
Int
static
val
actionOverflowButtonStyle
:
Int
static
val
actionOverflowMenuStyle
:
Int
static
val
actionProviderClass
:
Int
static
val
actionViewClass
:
Int
static
val
activityChooserViewStyle
:
Int
static
val
alertDialogButtonGroupStyle
:
Int
static
val
alertDialogCenterButtons
:
Int
static
val
alertDialogStyle
:
Int
static
val
alertDialogTheme
:
Int
static
val
allowStacking
:
Int
static
val
alpha
:
Int
static
val
alphabeticModifiers
:
Int
static
val
arrowHeadLength
:
Int
static
val
arrowShaftLength
:
Int
static
val
autoCompleteTextViewStyle
:
Int
static
val
autoSizeMaxTextSize
:
Int
static
val
autoSizeMinTextSize
:
Int
static
val
autoSizePresetSizes
:
Int
static
val
autoSizeStepGranularity
:
Int
static
val
autoSizeTextType
:
Int
static
val
background
:
Int
static
val
backgroundSplit
:
Int
static
val
backgroundStacked
:
Int
static
val
backgroundTint
:
Int
static
val
backgroundTintMode
:
Int
static
val
barLength
:
Int
static
val
behavior_autoHide
:
Int
static
val
behavior_fitToContents
:
Int
static
val
behavior_hideable
:
Int
static
val
behavior_overlapTop
:
Int
static
val
behavior_peekHeight
:
Int
static
val
behavior_skipCollapsed
:
Int
static
val
borderWidth
:
Int
static
val
borderlessButtonStyle
:
Int
static
val
bottomAppBarStyle
:
Int
static
val
bottomNavigationStyle
:
Int
static
val
bottomSheetDialogTheme
:
Int
static
val
bottomSheetStyle
:
Int
static
val
boxBackgroundColor
:
Int
static
val
boxBackgroundMode
:
Int
static
val
boxCollapsedPaddingTop
:
Int
static
val
boxCornerRadiusBottomEnd
:
Int
static
val
boxCornerRadiusBottomStart
:
Int
static
val
boxCornerRadiusTopEnd
:
Int
static
val
boxCornerRadiusTopStart
:
Int
static
val
boxStrokeColor
:
Int
static
val
boxStrokeWidth
:
Int
static
val
buttonBarButtonStyle
:
Int
static
val
buttonBarNegativeButtonStyle
:
Int
static
val
buttonBarNeutralButtonStyle
:
Int
static
val
buttonBarPositiveButtonStyle
:
Int
static
val
buttonBarStyle
:
Int
static
val
buttonGravity
:
Int
static
val
buttonIconDimen
:
Int
static
val
buttonPanelSideLayout
:
Int
static
val
buttonStyle
:
Int
static
val
buttonStyleSmall
:
Int
static
val
buttonTint
:
Int
static
val
buttonTintMode
:
Int
static
val
cardBackgroundColor
:
Int
static
val
cardCornerRadius
:
Int
static
val
cardElevation
:
Int
static
val
cardMaxElevation
:
Int
static
val
cardPreventCornerOverlap
:
Int
static
val
cardUseCompatPadding
:
Int
static
val
cardViewStyle
:
Int
static
val
checkboxStyle
:
Int
static
val
checkedChip
:
Int
static
val
checkedIcon
:
Int
static
val
checkedIconEnabled
:
Int
static
val
checkedIconVisible
:
Int
static
val
checkedTextViewStyle
:
Int
static
val
chipBackgroundColor
:
Int
static
val
chipCornerRadius
:
Int
static
val
chipEndPadding
:
Int
static
val
chipGroupStyle
:
Int
static
val
chipIcon
:
Int
static
val
chipIconEnabled
:
Int
static
val
chipIconSize
:
Int
static
val
chipIconTint
:
Int
static
val
chipIconVisible
:
Int
static
val
chipMinHeight
:
Int
static
val
chipSpacing
:
Int
static
val
chipSpacingHorizontal
:
Int
static
val
chipSpacingVertical
:
Int
static
val
chipStandaloneStyle
:
Int
static
val
chipStartPadding
:
Int
static
val
chipStrokeColor
:
Int
static
val
chipStrokeWidth
:
Int
static
val
chipStyle
:
Int
static
val
closeIcon
:
Int
static
val
closeIconEnabled
:
Int
static
val
closeIconEndPadding
:
Int
static
val
closeIconSize
:
Int
static
val
closeIconStartPadding
:
Int
static
val
closeIconTint
:
Int
static
val
closeIconVisible
:
Int
static
val
closeItemLayout
:
Int
static
val
collapseContentDescription
:
Int
static
val
collapseIcon
:
Int
static
val
collapsedTitleGravity
:
Int
static
val
collapsedTitleTextAppearance
:
Int
static
val
color
:
Int
static
val
colorAccent
:
Int
static
val
colorBackgroundFloating
:
Int
static
val
colorButtonNormal
:
Int
static
val
colorControlActivated
:
Int
static
val
colorControlHighlight
:
Int
static
val
colorControlNormal
:
Int
static
val
colorError
:
Int
static
val
colorPrimary
:
Int
static
val
colorPrimaryDark
:
Int
static
val
colorSecondary
:
Int
static
val
colorSwitchThumbNormal
:
Int
static
val
commitIcon
:
Int
static
val
contentDescription
:
Int
static
val
contentInsetEnd
:
Int
static
val
contentInsetEndWithActions
:
Int
static
val
contentInsetLeft
:
Int
static
val
contentInsetRight
:
Int
static
val
contentInsetStart
:
Int
static
val
contentInsetStartWithNavigation
:
Int
static
val
contentPadding
:
Int
static
val
contentPaddingBottom
:
Int
static
val
contentPaddingLeft
:
Int
static
val
contentPaddingRight
:
Int
static
val
contentPaddingTop
:
Int
static
val
contentScrim
:
Int
static
val
controlBackground
:
Int
static
val
coordinatorLayoutStyle
:
Int
static
val
cornerRadius
:
Int
static
val
counterEnabled
:
Int
static
val
counterMaxLength
:
Int
static
val
counterOverflowTextAppearance
:
Int
static
val
counterTextAppearance
:
Int
static
val
customNavigationLayout
:
Int
static
val
defaultQueryHint
:
Int
static
val
dialogCornerRadius
:
Int
static
val
dialogPreferredPadding
:
Int
static
val
dialogTheme
:
Int
static
val
displayOptions
:
Int
static
val
divider
:
Int
static
val
dividerHorizontal
:
Int
static
val
dividerPadding
:
Int
static
val
dividerVertical
:
Int
static
val
drawableSize
:
Int
static
val
drawerArrowStyle
:
Int
static
val
dropDownListViewStyle
:
Int
static
val
dropdownListPreferredItemHeight
:
Int
static
val
editTextBackground
:
Int
static
val
editTextColor
:
Int
static
val
editTextStyle
:
Int
static
val
elevation
:
Int
static
val
enforceMaterialTheme
:
Int
static
val
enforceTextAppearance
:
Int
static
val
errorEnabled
:
Int
static
val
errorTextAppearance
:
Int
static
val
expandActivityOverflowButtonDrawable
:
Int
static
val
expanded
:
Int
static
val
expandedTitleGravity
:
Int
static
val
expandedTitleMargin
:
Int
static
val
expandedTitleMarginBottom
:
Int
static
val
expandedTitleMarginEnd
:
Int
static
val
expandedTitleMarginStart
:
Int
static
val
expandedTitleMarginTop
:
Int
static
val
expandedTitleTextAppearance
:
Int
static
val
fabAlignmentMode
:
Int
static
val
fabCradleMargin
:
Int
static
val
fabCradleRoundedCornerRadius
:
Int
static
val
fabCradleVerticalOffset
:
Int
static
val
fabCustomSize
:
Int
static
val
fabSize
:
Int
static
val
fastScrollEnabled
:
Int
static
val
fastScrollHorizontalThumbDrawable
:
Int
static
val
fastScrollHorizontalTrackDrawable
:
Int
static
val
fastScrollVerticalThumbDrawable
:
Int
static
val
fastScrollVerticalTrackDrawable
:
Int
static
val
firstBaselineToTopHeight
:
Int
static
val
floatingActionButtonStyle
:
Int
static
val
font
:
Int
static
val
fontFamily
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
foregroundInsidePadding
:
Int
static
val
gapBetweenBars
:
Int
static
val
goIcon
:
Int
static
val
headerLayout
:
Int
static
val
height
:
Int
static
val
helperText
:
Int
static
val
helperTextEnabled
:
Int
static
val
helperTextTextAppearance
:
Int
static
val
hideMotionSpec
:
Int
static
val
hideOnContentScroll
:
Int
static
val
hideOnScroll
:
Int
static
val
hintAnimationEnabled
:
Int
static
val
hintEnabled
:
Int
static
val
hintTextAppearance
:
Int
static
val
homeAsUpIndicator
:
Int
static
val
homeLayout
:
Int
static
val
hoveredFocusedTranslationZ
:
Int
static
val
icon
:
Int
static
val
iconEndPadding
:
Int
static
val
iconGravity
:
Int
static
val
iconPadding
:
Int
static
val
iconSize
:
Int
static
val
iconStartPadding
:
Int
static
val
iconTint
:
Int
static
val
iconTintMode
:
Int
static
val
iconifiedByDefault
:
Int
static
val
imageButtonStyle
:
Int
static
val
indeterminateProgressStyle
:
Int
static
val
initialActivityCount
:
Int
static
val
insetForeground
:
Int
static
val
isLightTheme
:
Int
static
val
itemBackground
:
Int
static
val
itemHorizontalPadding
:
Int
static
val
itemHorizontalTranslationEnabled
:
Int
static
val
itemIconPadding
:
Int
static
val
itemIconSize
:
Int
static
val
itemIconTint
:
Int
static
val
itemPadding
:
Int
static
val
itemSpacing
:
Int
static
val
itemTextAppearance
:
Int
static
val
itemTextAppearanceActive
:
Int
static
val
itemTextAppearanceInactive
:
Int
static
val
itemTextColor
:
Int
static
val
keylines
:
Int
static
val
labelVisibilityMode
:
Int
static
val
lastBaselineToBottomHeight
:
Int
static
val
layout
:
Int
static
val
layoutManager
:
Int
static
val
layout_anchor
:
Int
static
val
layout_anchorGravity
:
Int
static
val
layout_behavior
:
Int
static
val
layout_collapseMode
:
Int
static
val
layout_collapseParallaxMultiplier
:
Int
static
val
layout_dodgeInsetEdges
:
Int
static
val
layout_insetEdge
:
Int
static
val
layout_keyline
:
Int
static
val
layout_scrollFlags
:
Int
static
val
layout_scrollInterpolator
:
Int
static
val
liftOnScroll
:
Int
static
val
lineHeight
:
Int
static
val
lineSpacing
:
Int
static
val
listChoiceBackgroundIndicator
:
Int
static
val
listDividerAlertDialog
:
Int
static
val
listItemLayout
:
Int
static
val
listLayout
:
Int
static
val
listMenuViewStyle
:
Int
static
val
listPopupWindowStyle
:
Int
static
val
listPreferredItemHeight
:
Int
static
val
listPreferredItemHeightLarge
:
Int
static
val
listPreferredItemHeightSmall
:
Int
static
val
listPreferredItemPaddingLeft
:
Int
static
val
listPreferredItemPaddingRight
:
Int
static
val
logo
:
Int
static
val
logoDescription
:
Int
static
val
materialButtonStyle
:
Int
static
val
materialCardViewStyle
:
Int
static
val
maxActionInlineWidth
:
Int
static
val
maxButtonHeight
:
Int
static
val
maxImageSize
:
Int
static
val
measureWithLargestChild
:
Int
static
val
menu
:
Int
static
val
multiChoiceItemLayout
:
Int
static
val
navigationContentDescription
:
Int
static
val
navigationIcon
:
Int
static
val
navigationMode
:
Int
static
val
navigationViewStyle
:
Int
static
val
numericModifiers
:
Int
static
val
overlapAnchor
:
Int
static
val
paddingBottomNoButtons
:
Int
static
val
paddingEnd
:
Int
static
val
paddingStart
:
Int
static
val
paddingTopNoTitle
:
Int
static
val
panelBackground
:
Int
static
val
panelMenuListTheme
:
Int
static
val
panelMenuListWidth
:
Int
static
val
passwordToggleContentDescription
:
Int
static
val
passwordToggleDrawable
:
Int
static
val
passwordToggleEnabled
:
Int
static
val
passwordToggleTint
:
Int
static
val
passwordToggleTintMode
:
Int
static
val
popupMenuStyle
:
Int
static
val
popupTheme
:
Int
static
val
popupWindowStyle
:
Int
static
val
preserveIconSpacing
:
Int
static
val
pressedTranslationZ
:
Int
static
val
progressBarPadding
:
Int
static
val
progressBarStyle
:
Int
static
val
queryBackground
:
Int
static
val
queryHint
:
Int
static
val
radioButtonStyle
:
Int
static
val
ratingBarStyle
:
Int
static
val
ratingBarStyleIndicator
:
Int
static
val
ratingBarStyleSmall
:
Int
static
val
reverseLayout
:
Int
static
val
rippleColor
:
Int
static
val
scrimAnimationDuration
:
Int
static
val
scrimBackground
:
Int
static
val
scrimVisibleHeightTrigger
:
Int
static
val
searchHintIcon
:
Int
static
val
searchIcon
:
Int
static
val
searchViewStyle
:
Int
static
val
seekBarStyle
:
Int
static
val
selectableItemBackground
:
Int
static
val
selectableItemBackgroundBorderless
:
Int
static
val
showAsAction
:
Int
static
val
showDividers
:
Int
static
val
showMotionSpec
:
Int
static
val
showText
:
Int
static
val
showTitle
:
Int
static
val
singleChoiceItemLayout
:
Int
static
val
singleLine
:
Int
static
val
singleSelection
:
Int
static
val
snackbarButtonStyle
:
Int
static
val
snackbarStyle
:
Int
static
val
spanCount
:
Int
static
val
spinBars
:
Int
static
val
spinnerDropDownItemStyle
:
Int
static
val
spinnerStyle
:
Int
static
val
splitTrack
:
Int
static
val
srcCompat
:
Int
static
val
stackFromEnd
:
Int
static
val
state_above_anchor
:
Int
static
val
state_collapsed
:
Int
static
val
state_collapsible
:
Int
static
val
state_liftable
:
Int
static
val
state_lifted
:
Int
static
val
statusBarBackground
:
Int
static
val
statusBarScrim
:
Int
static
val
strokeColor
:
Int
static
val
strokeWidth
:
Int
static
val
subMenuArrow
:
Int
static
val
submitBackground
:
Int
static
val
subtitle
:
Int
static
val
subtitleTextAppearance
:
Int
static
val
subtitleTextColor
:
Int
static
val
subtitleTextStyle
:
Int
static
val
suggestionRowLayout
:
Int
static
val
switchMinWidth
:
Int
static
val
switchPadding
:
Int
static
val
switchStyle
:
Int
static
val
switchTextAppearance
:
Int
static
val
tabBackground
:
Int
static
val
tabContentStart
:
Int
static
val
tabGravity
:
Int
static
val
tabIconTint
:
Int
static
val
tabIconTintMode
:
Int
static
val
tabIndicator
:
Int
static
val
tabIndicatorAnimationDuration
:
Int
static
val
tabIndicatorColor
:
Int
static
val
tabIndicatorFullWidth
:
Int
static
val
tabIndicatorGravity
:
Int
static
val
tabIndicatorHeight
:
Int
static
val
tabInlineLabel
:
Int
static
val
tabMaxWidth
:
Int
static
val
tabMinWidth
:
Int
static
val
tabMode
:
Int
static
val
tabPadding
:
Int
static
val
tabPaddingBottom
:
Int
static
val
tabPaddingEnd
:
Int
static
val
tabPaddingStart
:
Int
static
val
tabPaddingTop
:
Int
static
val
tabRippleColor
:
Int
static
val
tabSelectedTextColor
:
Int
static
val
tabStyle
:
Int
static
val
tabTextAppearance
:
Int
static
val
tabTextColor
:
Int
static
val
tabUnboundedRipple
:
Int
static
val
textAllCaps
:
Int
static
val
textAppearanceBody1
:
Int
static
val
textAppearanceBody2
:
Int
static
val
textAppearanceButton
:
Int
static
val
textAppearanceCaption
:
Int
static
val
textAppearanceHeadline1
:
Int
static
val
textAppearanceHeadline2
:
Int
static
val
textAppearanceHeadline3
:
Int
static
val
textAppearanceHeadline4
:
Int
static
val
textAppearanceHeadline5
:
Int
static
val
textAppearanceHeadline6
:
Int
static
val
textAppearanceLargePopupMenu
:
Int
static
val
textAppearanceListItem
:
Int
static
val
textAppearanceListItemSecondary
:
Int
static
val
textAppearanceListItemSmall
:
Int
static
val
textAppearanceOverline
:
Int
static
val
textAppearancePopupMenuHeader
:
Int
static
val
textAppearanceSearchResultSubtitle
:
Int
static
val
textAppearanceSearchResultTitle
:
Int
static
val
textAppearanceSmallPopupMenu
:
Int
static
val
textAppearanceSubtitle1
:
Int
static
val
textAppearanceSubtitle2
:
Int
static
val
textColorAlertDialogListItem
:
Int
static
val
textColorSearchUrl
:
Int
static
val
textEndPadding
:
Int
static
val
textInputStyle
:
Int
static
val
textStartPadding
:
Int
static
val
theme
:
Int
static
val
thickness
:
Int
static
val
thumbTextPadding
:
Int
static
val
thumbTint
:
Int
static
val
thumbTintMode
:
Int
static
val
tickMark
:
Int
static
val
tickMarkTint
:
Int
static
val
tickMarkTintMode
:
Int
static
val
tint
:
Int
static
val
tintMode
:
Int
static
val
title
:
Int
static
val
titleEnabled
:
Int
static
val
titleMargin
:
Int
static
val
titleMarginBottom
:
Int
static
val
titleMarginEnd
:
Int
static
val
titleMarginStart
:
Int
static
val
titleMarginTop
:
Int
static
val
titleMargins
:
Int
static
val
titleTextAppearance
:
Int
static
val
titleTextColor
:
Int
static
val
titleTextStyle
:
Int
static
val
toolbarId
:
Int
static
val
toolbarNavigationButtonStyle
:
Int
static
val
toolbarStyle
:
Int
static
val
tooltipForegroundColor
:
Int
static
val
tooltipFrameBackground
:
Int
static
val
tooltipText
:
Int
static
val
track
:
Int
static
val
trackTint
:
Int
static
val
trackTintMode
:
Int
static
val
ttcIndex
:
Int
static
val
useCompatPadding
:
Int
static
val
viewInflaterClass
:
Int
static
val
voiceIcon
:
Int
static
val
windowActionBar
:
Int
static
val
windowActionBarOverlay
:
Int
static
val
windowActionModeOverlay
:
Int
static
val
windowFixedHeightMajor
:
Int
static
val
windowFixedHeightMinor
:
Int
static
val
windowFixedWidthMajor
:
Int
static
val
windowFixedWidthMinor
:
Int
static
val
windowMinWidthMajor
:
Int
static
val
windowMinWidthMinor
:
Int
static
val
windowNoTitle
:
Int
class
bool
Module Contents
static
val
abc_action_bar_embed_tabs
:
Int
static
val
abc_allow_stacked_button_bar
:
Int
static
val
abc_config_actionMenuItemAllCaps
:
Int
static
val
mtrl_btn_textappearance_all_caps
:
Int
class
color
Module Contents
static
val
abc_background_cache_hint_selector_material_dark
:
Int
static
val
abc_background_cache_hint_selector_material_light
:
Int
static
val
abc_btn_colored_borderless_text_material
:
Int
static
val
abc_btn_colored_text_material
:
Int
static
val
abc_color_highlight_material
:
Int
static
val
abc_hint_foreground_material_dark
:
Int
static
val
abc_hint_foreground_material_light
:
Int
static
val
abc_input_method_navigation_guard
:
Int
static
val
abc_primary_text_disable_only_material_dark
:
Int
static
val
abc_primary_text_disable_only_material_light
:
Int
static
val
abc_primary_text_material_dark
:
Int
static
val
abc_primary_text_material_light
:
Int
static
val
abc_search_url_text
:
Int
static
val
abc_search_url_text_normal
:
Int
static
val
abc_search_url_text_pressed
:
Int
static
val
abc_search_url_text_selected
:
Int
static
val
abc_secondary_text_material_dark
:
Int
static
val
abc_secondary_text_material_light
:
Int
static
val
abc_tint_btn_checkable
:
Int
static
val
abc_tint_default
:
Int
static
val
abc_tint_edittext
:
Int
static
val
abc_tint_seek_thumb
:
Int
static
val
abc_tint_spinner
:
Int
static
val
abc_tint_switch_track
:
Int
static
val
accent_material_dark
:
Int
static
val
accent_material_light
:
Int
static
val
background_floating_material_dark
:
Int
static
val
background_floating_material_light
:
Int
static
val
background_material_dark
:
Int
static
val
background_material_light
:
Int
static
val
bright_foreground_disabled_material_dark
:
Int
static
val
bright_foreground_disabled_material_light
:
Int
static
val
bright_foreground_inverse_material_dark
:
Int
static
val
bright_foreground_inverse_material_light
:
Int
static
val
bright_foreground_material_dark
:
Int
static
val
bright_foreground_material_light
:
Int
static
val
button_material_dark
:
Int
static
val
button_material_light
:
Int
static
val
cardview_dark_background
:
Int
static
val
cardview_light_background
:
Int
static
val
cardview_shadow_end_color
:
Int
static
val
cardview_shadow_start_color
:
Int
static
val
design_bottom_navigation_shadow_color
:
Int
static
val
design_default_color_primary
:
Int
static
val
design_default_color_primary_dark
:
Int
static
val
design_error
:
Int
static
val
design_fab_shadow_end_color
:
Int
static
val
design_fab_shadow_mid_color
:
Int
static
val
design_fab_shadow_start_color
:
Int
static
val
design_fab_stroke_end_inner_color
:
Int
static
val
design_fab_stroke_end_outer_color
:
Int
static
val
design_fab_stroke_top_inner_color
:
Int
static
val
design_fab_stroke_top_outer_color
:
Int
static
val
design_snackbar_background_color
:
Int
static
val
design_tint_password_toggle
:
Int
static
val
dim_foreground_disabled_material_dark
:
Int
static
val
dim_foreground_disabled_material_light
:
Int
static
val
dim_foreground_material_dark
:
Int
static
val
dim_foreground_material_light
:
Int
static
val
error_color_material_dark
:
Int
static
val
error_color_material_light
:
Int
static
val
foreground_material_dark
:
Int
static
val
foreground_material_light
:
Int
static
val
highlighted_text_material_dark
:
Int
static
val
highlighted_text_material_light
:
Int
static
val
material_blue_grey_800
:
Int
static
val
material_blue_grey_900
:
Int
static
val
material_blue_grey_950
:
Int
static
val
material_deep_teal_200
:
Int
static
val
material_deep_teal_500
:
Int
static
val
material_grey_100
:
Int
static
val
material_grey_300
:
Int
static
val
material_grey_50
:
Int
static
val
material_grey_600
:
Int
static
val
material_grey_800
:
Int
static
val
material_grey_850
:
Int
static
val
material_grey_900
:
Int
static
val
mtrl_bottom_nav_colored_item_tint
:
Int
static
val
mtrl_bottom_nav_item_tint
:
Int
static
val
mtrl_btn_bg_color_disabled
:
Int
static
val
mtrl_btn_bg_color_selector
:
Int
static
val
mtrl_btn_ripple_color
:
Int
static
val
mtrl_btn_stroke_color_selector
:
Int
static
val
mtrl_btn_text_btn_ripple_color
:
Int
static
val
mtrl_btn_text_color_disabled
:
Int
static
val
mtrl_btn_text_color_selector
:
Int
static
val
mtrl_btn_transparent_bg_color
:
Int
static
val
mtrl_chip_background_color
:
Int
static
val
mtrl_chip_close_icon_tint
:
Int
static
val
mtrl_chip_ripple_color
:
Int
static
val
mtrl_chip_text_color
:
Int
static
val
mtrl_fab_ripple_color
:
Int
static
val
mtrl_scrim_color
:
Int
static
val
mtrl_tabs_colored_ripple_color
:
Int
static
val
mtrl_tabs_icon_color_selector
:
Int
static
val
mtrl_tabs_icon_color_selector_colored
:
Int
static
val
mtrl_tabs_legacy_text_color_selector
:
Int
static
val
mtrl_tabs_ripple_color
:
Int
static
val
mtrl_text_btn_text_color_selector
:
Int
static
val
mtrl_textinput_default_box_stroke_color
:
Int
static
val
mtrl_textinput_disabled_color
:
Int
static
val
mtrl_textinput_filled_box_default_background_color
:
Int
static
val
mtrl_textinput_hovered_box_stroke_color
:
Int
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
primary_dark_material_dark
:
Int
static
val
primary_dark_material_light
:
Int
static
val
primary_material_dark
:
Int
static
val
primary_material_light
:
Int
static
val
primary_text_default_material_dark
:
Int
static
val
primary_text_default_material_light
:
Int
static
val
primary_text_disabled_material_dark
:
Int
static
val
primary_text_disabled_material_light
:
Int
static
val
ripple_material_dark
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_dark
:
Int
static
val
secondary_text_default_material_light
:
Int
static
val
secondary_text_disabled_material_dark
:
Int
static
val
secondary_text_disabled_material_light
:
Int
static
val
switch_thumb_disabled_material_dark
:
Int
static
val
switch_thumb_disabled_material_light
:
Int
static
val
switch_thumb_material_dark
:
Int
static
val
switch_thumb_material_light
:
Int
static
val
switch_thumb_normal_material_dark
:
Int
static
val
switch_thumb_normal_material_light
:
Int
static
val
tooltip_background_dark
:
Int
static
val
tooltip_background_light
:
Int
class
dimen
Module Contents
static
val
abc_action_bar_content_inset_material
:
Int
static
val
abc_action_bar_content_inset_with_nav
:
Int
static
val
abc_action_bar_default_height_material
:
Int
static
val
abc_action_bar_default_padding_end_material
:
Int
static
val
abc_action_bar_default_padding_start_material
:
Int
static
val
abc_action_bar_elevation_material
:
Int
static
val
abc_action_bar_icon_vertical_padding_material
:
Int
static
val
abc_action_bar_overflow_padding_end_material
:
Int
static
val
abc_action_bar_overflow_padding_start_material
:
Int
static
val
abc_action_bar_stacked_max_height
:
Int
static
val
abc_action_bar_stacked_tab_max_width
:
Int
static
val
abc_action_bar_subtitle_bottom_margin_material
:
Int
static
val
abc_action_bar_subtitle_top_margin_material
:
Int
static
val
abc_action_button_min_height_material
:
Int
static
val
abc_action_button_min_width_material
:
Int
static
val
abc_action_button_min_width_overflow_material
:
Int
static
val
abc_alert_dialog_button_bar_height
:
Int
static
val
abc_alert_dialog_button_dimen
:
Int
static
val
abc_button_inset_horizontal_material
:
Int
static
val
abc_button_inset_vertical_material
:
Int
static
val
abc_button_padding_horizontal_material
:
Int
static
val
abc_button_padding_vertical_material
:
Int
static
val
abc_cascading_menus_min_smallest_width
:
Int
static
val
abc_config_prefDialogWidth
:
Int
static
val
abc_control_corner_material
:
Int
static
val
abc_control_inset_material
:
Int
static
val
abc_control_padding_material
:
Int
static
val
abc_dialog_corner_radius_material
:
Int
static
val
abc_dialog_fixed_height_major
:
Int
static
val
abc_dialog_fixed_height_minor
:
Int
static
val
abc_dialog_fixed_width_major
:
Int
static
val
abc_dialog_fixed_width_minor
:
Int
static
val
abc_dialog_list_padding_bottom_no_buttons
:
Int
static
val
abc_dialog_list_padding_top_no_title
:
Int
static
val
abc_dialog_min_width_major
:
Int
static
val
abc_dialog_min_width_minor
:
Int
static
val
abc_dialog_padding_material
:
Int
static
val
abc_dialog_padding_top_material
:
Int
static
val
abc_dialog_title_divider_material
:
Int
static
val
abc_disabled_alpha_material_dark
:
Int
static
val
abc_disabled_alpha_material_light
:
Int
static
val
abc_dropdownitem_icon_width
:
Int
static
val
abc_dropdownitem_text_padding_left
:
Int
static
val
abc_dropdownitem_text_padding_right
:
Int
static
val
abc_edit_text_inset_bottom_material
:
Int
static
val
abc_edit_text_inset_horizontal_material
:
Int
static
val
abc_edit_text_inset_top_material
:
Int
static
val
abc_floating_window_z
:
Int
static
val
abc_list_item_padding_horizontal_material
:
Int
static
val
abc_panel_menu_list_width
:
Int
static
val
abc_progress_bar_height_material
:
Int
static
val
abc_search_view_preferred_height
:
Int
static
val
abc_search_view_preferred_width
:
Int
static
val
abc_seekbar_track_background_height_material
:
Int
static
val
abc_seekbar_track_progress_height_material
:
Int
static
val
abc_select_dialog_padding_start_material
:
Int
static
val
abc_switch_padding
:
Int
static
val
abc_text_size_body_1_material
:
Int
static
val
abc_text_size_body_2_material
:
Int
static
val
abc_text_size_button_material
:
Int
static
val
abc_text_size_caption_material
:
Int
static
val
abc_text_size_display_1_material
:
Int
static
val
abc_text_size_display_2_material
:
Int
static
val
abc_text_size_display_3_material
:
Int
static
val
abc_text_size_display_4_material
:
Int
static
val
abc_text_size_headline_material
:
Int
static
val
abc_text_size_large_material
:
Int
static
val
abc_text_size_medium_material
:
Int
static
val
abc_text_size_menu_header_material
:
Int
static
val
abc_text_size_menu_material
:
Int
static
val
abc_text_size_small_material
:
Int
static
val
abc_text_size_subhead_material
:
Int
static
val
abc_text_size_subtitle_material_toolbar
:
Int
static
val
abc_text_size_title_material
:
Int
static
val
abc_text_size_title_material_toolbar
:
Int
static
val
cardview_compat_inset_shadow
:
Int
static
val
cardview_default_elevation
:
Int
static
val
cardview_default_radius
:
Int
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
design_appbar_elevation
:
Int
static
val
design_bottom_navigation_active_item_max_width
:
Int
static
val
design_bottom_navigation_active_item_min_width
:
Int
static
val
design_bottom_navigation_active_text_size
:
Int
static
val
design_bottom_navigation_elevation
:
Int
static
val
design_bottom_navigation_height
:
Int
static
val
design_bottom_navigation_icon_size
:
Int
static
val
design_bottom_navigation_item_max_width
:
Int
static
val
design_bottom_navigation_item_min_width
:
Int
static
val
design_bottom_navigation_margin
:
Int
static
val
design_bottom_navigation_shadow_height
:
Int
static
val
design_bottom_navigation_text_size
:
Int
static
val
design_bottom_sheet_modal_elevation
:
Int
static
val
design_bottom_sheet_peek_height_min
:
Int
static
val
design_fab_border_width
:
Int
static
val
design_fab_elevation
:
Int
static
val
design_fab_image_size
:
Int
static
val
design_fab_size_mini
:
Int
static
val
design_fab_size_normal
:
Int
static
val
design_fab_translation_z_hovered_focused
:
Int
static
val
design_fab_translation_z_pressed
:
Int
static
val
design_navigation_elevation
:
Int
static
val
design_navigation_icon_padding
:
Int
static
val
design_navigation_icon_size
:
Int
static
val
design_navigation_item_horizontal_padding
:
Int
static
val
design_navigation_item_icon_padding
:
Int
static
val
design_navigation_max_width
:
Int
static
val
design_navigation_padding_bottom
:
Int
static
val
design_navigation_separator_vertical_padding
:
Int
static
val
design_snackbar_action_inline_max_width
:
Int
static
val
design_snackbar_background_corner_radius
:
Int
static
val
design_snackbar_elevation
:
Int
static
val
design_snackbar_extra_spacing_horizontal
:
Int
static
val
design_snackbar_max_width
:
Int
static
val
design_snackbar_min_width
:
Int
static
val
design_snackbar_padding_horizontal
:
Int
static
val
design_snackbar_padding_vertical
:
Int
static
val
design_snackbar_padding_vertical_2lines
:
Int
static
val
design_snackbar_text_size
:
Int
static
val
design_tab_max_width
:
Int
static
val
design_tab_scrollable_min_width
:
Int
static
val
design_tab_text_size
:
Int
static
val
design_tab_text_size_2line
:
Int
static
val
design_textinput_caption_translate_y
:
Int
static
val
disabled_alpha_material_dark
:
Int
static
val
disabled_alpha_material_light
:
Int
static
val
fastscroll_default_thickness
:
Int
static
val
fastscroll_margin
:
Int
static
val
fastscroll_minimum_range
:
Int
static
val
highlight_alpha_material_colored
:
Int
static
val
highlight_alpha_material_dark
:
Int
static
val
highlight_alpha_material_light
:
Int
static
val
hint_alpha_material_dark
:
Int
static
val
hint_alpha_material_light
:
Int
static
val
hint_pressed_alpha_material_dark
:
Int
static
val
hint_pressed_alpha_material_light
:
Int
static
val
item_touch_helper_max_drag_scroll_per_frame
:
Int
static
val
item_touch_helper_swipe_escape_max_velocity
:
Int
static
val
item_touch_helper_swipe_escape_velocity
:
Int
static
val
mtrl_bottomappbar_fabOffsetEndMode
:
Int
static
val
mtrl_bottomappbar_fab_cradle_margin
:
Int
static
val
mtrl_bottomappbar_fab_cradle_rounded_corner_radius
:
Int
static
val
mtrl_bottomappbar_fab_cradle_vertical_offset
:
Int
static
val
mtrl_bottomappbar_height
:
Int
static
val
mtrl_btn_corner_radius
:
Int
static
val
mtrl_btn_dialog_btn_min_width
:
Int
static
val
mtrl_btn_disabled_elevation
:
Int
static
val
mtrl_btn_disabled_z
:
Int
static
val
mtrl_btn_elevation
:
Int
static
val
mtrl_btn_focused_z
:
Int
static
val
mtrl_btn_hovered_z
:
Int
static
val
mtrl_btn_icon_btn_padding_left
:
Int
static
val
mtrl_btn_icon_padding
:
Int
static
val
mtrl_btn_inset
:
Int
static
val
mtrl_btn_letter_spacing
:
Int
static
val
mtrl_btn_padding_bottom
:
Int
static
val
mtrl_btn_padding_left
:
Int
static
val
mtrl_btn_padding_right
:
Int
static
val
mtrl_btn_padding_top
:
Int
static
val
mtrl_btn_pressed_z
:
Int
static
val
mtrl_btn_stroke_size
:
Int
static
val
mtrl_btn_text_btn_icon_padding
:
Int
static
val
mtrl_btn_text_btn_padding_left
:
Int
static
val
mtrl_btn_text_btn_padding_right
:
Int
static
val
mtrl_btn_text_size
:
Int
static
val
mtrl_btn_z
:
Int
static
val
mtrl_card_elevation
:
Int
static
val
mtrl_card_spacing
:
Int
static
val
mtrl_chip_pressed_translation_z
:
Int
static
val
mtrl_chip_text_size
:
Int
static
val
mtrl_fab_elevation
:
Int
static
val
mtrl_fab_translation_z_hovered_focused
:
Int
static
val
mtrl_fab_translation_z_pressed
:
Int
static
val
mtrl_navigation_elevation
:
Int
static
val
mtrl_navigation_item_horizontal_padding
:
Int
static
val
mtrl_navigation_item_icon_padding
:
Int
static
val
mtrl_snackbar_background_corner_radius
:
Int
static
val
mtrl_snackbar_margin
:
Int
static
val
mtrl_textinput_box_bottom_offset
:
Int
static
val
mtrl_textinput_box_corner_radius_medium
:
Int
static
val
mtrl_textinput_box_corner_radius_small
:
Int
static
val
mtrl_textinput_box_label_cutout_padding
:
Int
static
val
mtrl_textinput_box_padding_end
:
Int
static
val
mtrl_textinput_box_stroke_width_default
:
Int
static
val
mtrl_textinput_box_stroke_width_focused
:
Int
static
val
mtrl_textinput_outline_box_expanded_padding
:
Int
static
val
mtrl_toolbar_default_height
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
static
val
tooltip_corner_radius
:
Int
static
val
tooltip_horizontal_padding
:
Int
static
val
tooltip_margin
:
Int
static
val
tooltip_precise_anchor_extra_offset
:
Int
static
val
tooltip_precise_anchor_threshold
:
Int
static
val
tooltip_vertical_padding
:
Int
static
val
tooltip_y_offset_non_touch
:
Int
static
val
tooltip_y_offset_touch
:
Int
class
drawable
Module Contents
static
val
abc_ab_share_pack_mtrl_alpha
:
Int
static
val
abc_action_bar_item_background_material
:
Int
static
val
abc_btn_borderless_material
:
Int
static
val
abc_btn_check_material
:
Int
static
val
abc_btn_check_to_on_mtrl_000
:
Int
static
val
abc_btn_check_to_on_mtrl_015
:
Int
static
val
abc_btn_colored_material
:
Int
static
val
abc_btn_default_mtrl_shape
:
Int
static
val
abc_btn_radio_material
:
Int
static
val
abc_btn_radio_to_on_mtrl_000
:
Int
static
val
abc_btn_radio_to_on_mtrl_015
:
Int
static
val
abc_btn_switch_to_on_mtrl_00001
:
Int
static
val
abc_btn_switch_to_on_mtrl_00012
:
Int
static
val
abc_cab_background_internal_bg
:
Int
static
val
abc_cab_background_top_material
:
Int
static
val
abc_cab_background_top_mtrl_alpha
:
Int
static
val
abc_control_background_material
:
Int
static
val
abc_dialog_material_background
:
Int
static
val
abc_edit_text_material
:
Int
static
val
abc_ic_ab_back_material
:
Int
static
val
abc_ic_arrow_drop_right_black_24dp
:
Int
static
val
abc_ic_clear_material
:
Int
static
val
abc_ic_commit_search_api_mtrl_alpha
:
Int
static
val
abc_ic_go_search_api_material
:
Int
static
val
abc_ic_menu_copy_mtrl_am_alpha
:
Int
static
val
abc_ic_menu_cut_mtrl_alpha
:
Int
static
val
abc_ic_menu_overflow_material
:
Int
static
val
abc_ic_menu_paste_mtrl_am_alpha
:
Int
static
val
abc_ic_menu_selectall_mtrl_alpha
:
Int
static
val
abc_ic_menu_share_mtrl_alpha
:
Int
static
val
abc_ic_search_api_material
:
Int
static
val
abc_ic_star_black_16dp
:
Int
static
val
abc_ic_star_black_36dp
:
Int
static
val
abc_ic_star_black_48dp
:
Int
static
val
abc_ic_star_half_black_16dp
:
Int
static
val
abc_ic_star_half_black_36dp
:
Int
static
val
abc_ic_star_half_black_48dp
:
Int
static
val
abc_ic_voice_search_api_material
:
Int
static
val
abc_item_background_holo_dark
:
Int
static
val
abc_item_background_holo_light
:
Int
static
val
abc_list_divider_material
:
Int
static
val
abc_list_divider_mtrl_alpha
:
Int
static
val
abc_list_focused_holo
:
Int
static
val
abc_list_longpressed_holo
:
Int
static
val
abc_list_pressed_holo_dark
:
Int
static
val
abc_list_pressed_holo_light
:
Int
static
val
abc_list_selector_background_transition_holo_dark
:
Int
static
val
abc_list_selector_background_transition_holo_light
:
Int
static
val
abc_list_selector_disabled_holo_dark
:
Int
static
val
abc_list_selector_disabled_holo_light
:
Int
static
val
abc_list_selector_holo_dark
:
Int
static
val
abc_list_selector_holo_light
:
Int
static
val
abc_menu_hardkey_panel_mtrl_mult
:
Int
static
val
abc_popup_background_mtrl_mult
:
Int
static
val
abc_ratingbar_indicator_material
:
Int
static
val
abc_ratingbar_material
:
Int
static
val
abc_ratingbar_small_material
:
Int
static
val
abc_scrubber_control_off_mtrl_alpha
:
Int
static
val
abc_scrubber_control_to_pressed_mtrl_000
:
Int
static
val
abc_scrubber_control_to_pressed_mtrl_005
:
Int
static
val
abc_scrubber_primary_mtrl_alpha
:
Int
static
val
abc_scrubber_track_mtrl_alpha
:
Int
static
val
abc_seekbar_thumb_material
:
Int
static
val
abc_seekbar_tick_mark_material
:
Int
static
val
abc_seekbar_track_material
:
Int
static
val
abc_spinner_mtrl_am_alpha
:
Int
static
val
abc_spinner_textfield_background_material
:
Int
static
val
abc_switch_thumb_material
:
Int
static
val
abc_switch_track_mtrl_alpha
:
Int
static
val
abc_tab_indicator_material
:
Int
static
val
abc_tab_indicator_mtrl_alpha
:
Int
static
val
abc_text_cursor_material
:
Int
static
val
abc_text_select_handle_left_mtrl_dark
:
Int
static
val
abc_text_select_handle_left_mtrl_light
:
Int
static
val
abc_text_select_handle_middle_mtrl_dark
:
Int
static
val
abc_text_select_handle_middle_mtrl_light
:
Int
static
val
abc_text_select_handle_right_mtrl_dark
:
Int
static
val
abc_text_select_handle_right_mtrl_light
:
Int
static
val
abc_textfield_activated_mtrl_alpha
:
Int
static
val
abc_textfield_default_mtrl_alpha
:
Int
static
val
abc_textfield_search_activated_mtrl_alpha
:
Int
static
val
abc_textfield_search_default_mtrl_alpha
:
Int
static
val
abc_textfield_search_material
:
Int
static
val
abc_vector_test
:
Int
static
val
avd_hide_password
:
Int
static
val
avd_show_password
:
Int
static
val
design_bottom_navigation_item_background
:
Int
static
val
design_fab_background
:
Int
static
val
design_ic_visibility
:
Int
static
val
design_ic_visibility_off
:
Int
static
val
design_password_eye
:
Int
static
val
design_snackbar_background
:
Int
static
val
ic_mtrl_chip_checked_black
:
Int
static
val
ic_mtrl_chip_checked_circle
:
Int
static
val
ic_mtrl_chip_close_circle
:
Int
static
val
mtrl_snackbar_background
:
Int
static
val
mtrl_tabs_default_indicator
:
Int
static
val
navigation_empty_icon
:
Int
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
static
val
tooltip_frame_dark
:
Int
static
val
tooltip_frame_light
:
Int
class
id
Module Contents
static
val
action_bar
:
Int
static
val
action_bar_activity_content
:
Int
static
val
action_bar_container
:
Int
static
val
action_bar_root
:
Int
static
val
action_bar_spinner
:
Int
static
val
action_bar_subtitle
:
Int
static
val
action_bar_title
:
Int
static
val
action_container
:
Int
static
val
action_context_bar
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_menu_divider
:
Int
static
val
action_menu_presenter
:
Int
static
val
action_mode_bar
:
Int
static
val
action_mode_bar_stub
:
Int
static
val
action_mode_close_button
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
activity_chooser_view_content
:
Int
static
val
add
:
Int
static
val
alertTitle
:
Int
static
val
async
:
Int
static
val
auto
:
Int
static
val
blocking
:
Int
static
val
bottom
:
Int
static
val
buttonPanel
:
Int
static
val
center
:
Int
static
val
checkbox
:
Int
static
val
chronometer
:
Int
static
val
container
:
Int
static
val
content
:
Int
static
val
contentPanel
:
Int
static
val
coordinator
:
Int
static
val
custom
:
Int
static
val
customPanel
:
Int
static
val
decor_content_parent
:
Int
static
val
default_activity_button
:
Int
static
val
design_bottom_sheet
:
Int
static
val
design_menu_item_action_area
:
Int
static
val
design_menu_item_action_area_stub
:
Int
static
val
design_menu_item_text
:
Int
static
val
design_navigation_view
:
Int
static
val
edit_query
:
Int
static
val
end
:
Int
static
val
expand_activities_button
:
Int
static
val
expanded_menu
:
Int
static
val
fill
:
Int
static
val
filled
:
Int
static
val
fixed
:
Int
static
val
forever
:
Int
static
val
ghost_view
:
Int
static
val
group_divider
:
Int
static
val
home
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
image
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
item_touch_helper_previous_elevation
:
Int
static
val
labeled
:
Int
static
val
largeLabel
:
Int
static
val
left
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
listMode
:
Int
static
val
list_item
:
Int
static
val
masked
:
Int
static
val
message
:
Int
static
val
mini
:
Int
static
val
mtrl_child_content_container
:
Int
static
val
mtrl_internal_children_alpha_tag
:
Int
static
val
multiply
:
Int
static
val
navigation_header_container
:
Int
static
val
none
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
outline
:
Int
static
val
parallax
:
Int
static
val
parentPanel
:
Int
static
val
parent_matrix
:
Int
static
val
pin
:
Int
static
val
progress_circular
:
Int
static
val
progress_horizontal
:
Int
static
val
radio
:
Int
static
val
right
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
save_image_matrix
:
Int
static
val
save_non_transition_alpha
:
Int
static
val
save_scale_type
:
Int
static
val
screen
:
Int
static
val
scrollIndicatorDown
:
Int
static
val
scrollIndicatorUp
:
Int
static
val
scrollView
:
Int
static
val
scrollable
:
Int
static
val
search_badge
:
Int
static
val
search_bar
:
Int
static
val
search_button
:
Int
static
val
search_close_btn
:
Int
static
val
search_edit_frame
:
Int
static
val
search_go_btn
:
Int
static
val
search_mag_icon
:
Int
static
val
search_plate
:
Int
static
val
search_src_text
:
Int
static
val
search_voice_btn
:
Int
static
val
select_dialog_listview
:
Int
static
val
selected
:
Int
static
val
shortcut
:
Int
static
val
smallLabel
:
Int
static
val
snackbar_action
:
Int
static
val
snackbar_text
:
Int
static
val
spacer
:
Int
static
val
split_action_bar
:
Int
static
val
src_atop
:
Int
static
val
src_in
:
Int
static
val
src_over
:
Int
static
val
start
:
Int
static
val
stretch
:
Int
static
val
submenuarrow
:
Int
static
val
submit_area
:
Int
static
val
tabMode
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
textSpacerNoButtons
:
Int
static
val
textSpacerNoTitle
:
Int
static
val
text_input_password_toggle
:
Int
static
val
textinput_counter
:
Int
static
val
textinput_error
:
Int
static
val
textinput_helper_text
:
Int
static
val
time
:
Int
static
val
title
:
Int
static
val
titleDividerNoCustom
:
Int
static
val
title_template
:
Int
static
val
top
:
Int
static
val
topPanel
:
Int
static
val
touch_outside
:
Int
static
val
transition_current_scene
:
Int
static
val
transition_layout_save
:
Int
static
val
transition_position
:
Int
static
val
transition_scene_layoutid_cache
:
Int
static
val
transition_transform
:
Int
static
val
uniform
:
Int
static
val
unlabeled
:
Int
static
val
up
:
Int
static
val
view_offset_helper
:
Int
static
val
visible
:
Int
static
val
wrap_content
:
Int
class
integer
Module Contents
static
val
abc_config_activityDefaultDur
:
Int
static
val
abc_config_activityShortDur
:
Int
static
val
app_bar_elevation_anim_duration
:
Int
static
val
bottom_sheet_slide_duration
:
Int
static
val
cancel_button_image_alpha
:
Int
static
val
config_tooltipAnimTime
:
Int
static
val
design_snackbar_text_max_lines
:
Int
static
val
design_tab_indicator_anim_duration_ms
:
Int
static
val
hide_password_duration
:
Int
static
val
mtrl_btn_anim_delay_ms
:
Int
static
val
mtrl_btn_anim_duration_ms
:
Int
static
val
mtrl_chip_anim_duration
:
Int
static
val
mtrl_tab_indicator_anim_duration_ms
:
Int
static
val
show_password_duration
:
Int
static
val
status_bar_notification_info_maxnum
:
Int
class
interpolator
Module Contents
static
val
mtrl_fast_out_linear_in
:
Int
static
val
mtrl_fast_out_slow_in
:
Int
static
val
mtrl_linear
:
Int
static
val
mtrl_linear_out_slow_in
:
Int
class
layout
Module Contents
static
val
abc_action_bar_title_item
:
Int
static
val
abc_action_bar_up_container
:
Int
static
val
abc_action_menu_item_layout
:
Int
static
val
abc_action_menu_layout
:
Int
static
val
abc_action_mode_bar
:
Int
static
val
abc_action_mode_close_item_material
:
Int
static
val
abc_activity_chooser_view
:
Int
static
val
abc_activity_chooser_view_list_item
:
Int
static
val
abc_alert_dialog_button_bar_material
:
Int
static
val
abc_alert_dialog_material
:
Int
static
val
abc_alert_dialog_title_material
:
Int
static
val
abc_cascading_menu_item_layout
:
Int
static
val
abc_dialog_title_material
:
Int
static
val
abc_expanded_menu_layout
:
Int
static
val
abc_list_menu_item_checkbox
:
Int
static
val
abc_list_menu_item_icon
:
Int
static
val
abc_list_menu_item_layout
:
Int
static
val
abc_list_menu_item_radio
:
Int
static
val
abc_popup_menu_header_item_layout
:
Int
static
val
abc_popup_menu_item_layout
:
Int
static
val
abc_screen_content_include
:
Int
static
val
abc_screen_simple
:
Int
static
val
abc_screen_simple_overlay_action_mode
:
Int
static
val
abc_screen_toolbar
:
Int
static
val
abc_search_dropdown_item_icons_2line
:
Int
static
val
abc_search_view
:
Int
static
val
abc_select_dialog_material
:
Int
static
val
abc_tooltip
:
Int
static
val
design_bottom_navigation_item
:
Int
static
val
design_bottom_sheet_dialog
:
Int
static
val
design_layout_snackbar
:
Int
static
val
design_layout_snackbar_include
:
Int
static
val
design_layout_tab_icon
:
Int
static
val
design_layout_tab_text
:
Int
static
val
design_menu_item_action_area
:
Int
static
val
design_navigation_item
:
Int
static
val
design_navigation_item_header
:
Int
static
val
design_navigation_item_separator
:
Int
static
val
design_navigation_item_subheader
:
Int
static
val
design_navigation_menu
:
Int
static
val
design_navigation_menu_item
:
Int
static
val
design_text_input_password_icon
:
Int
static
val
mtrl_layout_snackbar
:
Int
static
val
mtrl_layout_snackbar_include
:
Int
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
static
val
select_dialog_item_material
:
Int
static
val
select_dialog_multichoice_material
:
Int
static
val
select_dialog_singlechoice_material
:
Int
static
val
support_simple_spinner_dropdown_item
:
Int
class
string
Module Contents
static
val
abc_action_bar_home_description
:
Int
static
val
abc_action_bar_up_description
:
Int
static
val
abc_action_menu_overflow_description
:
Int
static
val
abc_action_mode_done
:
Int
static
val
abc_activity_chooser_view_see_all
:
Int
static
val
abc_activitychooserview_choose_application
:
Int
static
val
abc_capital_off
:
Int
static
val
abc_capital_on
:
Int
static
val
abc_font_family_body_1_material
:
Int
static
val
abc_font_family_body_2_material
:
Int
static
val
abc_font_family_button_material
:
Int
static
val
abc_font_family_caption_material
:
Int
static
val
abc_font_family_display_1_material
:
Int
static
val
abc_font_family_display_2_material
:
Int
static
val
abc_font_family_display_3_material
:
Int
static
val
abc_font_family_display_4_material
:
Int
static
val
abc_font_family_headline_material
:
Int
static
val
abc_font_family_menu_material
:
Int
static
val
abc_font_family_subhead_material
:
Int
static
val
abc_font_family_title_material
:
Int
static
val
abc_menu_alt_shortcut_label
:
Int
static
val
abc_menu_ctrl_shortcut_label
:
Int
static
val
abc_menu_delete_shortcut_label
:
Int
static
val
abc_menu_enter_shortcut_label
:
Int
static
val
abc_menu_function_shortcut_label
:
Int
static
val
abc_menu_meta_shortcut_label
:
Int
static
val
abc_menu_shift_shortcut_label
:
Int
static
val
abc_menu_space_shortcut_label
:
Int
static
val
abc_menu_sym_shortcut_label
:
Int
static
val
abc_prepend_shortcut_label
:
Int
static
val
abc_search_hint
:
Int
static
val
abc_searchview_description_clear
:
Int
static
val
abc_searchview_description_query
:
Int
static
val
abc_searchview_description_search
:
Int
static
val
abc_searchview_description_submit
:
Int
static
val
abc_searchview_description_voice
:
Int
static
val
abc_shareactionprovider_share_with
:
Int
static
val
abc_shareactionprovider_share_with_application
:
Int
static
val
abc_toolbar_collapse_description
:
Int
static
val
appbar_scrolling_view_behavior
:
Int
static
val
bottom_sheet_behavior
:
Int
static
val
character_counter_content_description
:
Int
static
val
character_counter_pattern
:
Int
static
val
fab_transformation_scrim_behavior
:
Int
static
val
fab_transformation_sheet_behavior
:
Int
static
val
hide_bottom_view_on_scroll_behavior
:
Int
static
val
mtrl_chip_close_icon_content_description
:
Int
static
val
password_toggle_content_description
:
Int
static
val
path_password_eye
:
Int
static
val
path_password_eye_mask_strike_through
:
Int
static
val
path_password_eye_mask_visible
:
Int
static
val
path_password_strike_through
:
Int
static
val
search_menu_title
:
Int
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
AlertDialog_AppCompat
:
Int
static
val
AlertDialog_AppCompat_Light
:
Int
static
val
Animation_AppCompat_Dialog
:
Int
static
val
Animation_AppCompat_DropDownUp
:
Int
static
val
Animation_AppCompat_Tooltip
:
Int
static
val
Animation_Design_BottomSheetDialog
:
Int
static
val
Base_AlertDialog_AppCompat
:
Int
static
val
Base_AlertDialog_AppCompat_Light
:
Int
static
val
Base_Animation_AppCompat_Dialog
:
Int
static
val
Base_Animation_AppCompat_DropDownUp
:
Int
static
val
Base_Animation_AppCompat_Tooltip
:
Int
static
val
Base_CardView
:
Int
static
val
Base_DialogWindowTitleBackground_AppCompat
:
Int
static
val
Base_DialogWindowTitle_AppCompat
:
Int
static
val
Base_TextAppearance_AppCompat
:
Int
static
val
Base_TextAppearance_AppCompat_Body1
:
Int
static
val
Base_TextAppearance_AppCompat_Body2
:
Int
static
val
Base_TextAppearance_AppCompat_Button
:
Int
static
val
Base_TextAppearance_AppCompat_Caption
:
Int
static
val
Base_TextAppearance_AppCompat_Display1
:
Int
static
val
Base_TextAppearance_AppCompat_Display2
:
Int
static
val
Base_TextAppearance_AppCompat_Display3
:
Int
static
val
Base_TextAppearance_AppCompat_Display4
:
Int
static
val
Base_TextAppearance_AppCompat_Headline
:
Int
static
val
Base_TextAppearance_AppCompat_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Large
:
Int
static
val
Base_TextAppearance_AppCompat_Large_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
:
Int
static
val
Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
:
Int
static
val
Base_TextAppearance_AppCompat_Medium
:
Int
static
val
Base_TextAppearance_AppCompat_Medium_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Menu
:
Int
static
val
Base_TextAppearance_AppCompat_SearchResult
:
Int
static
val
Base_TextAppearance_AppCompat_SearchResult_Subtitle
:
Int
static
val
Base_TextAppearance_AppCompat_SearchResult_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Small
:
Int
static
val
Base_TextAppearance_AppCompat_Small_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Subhead
:
Int
static
val
Base_TextAppearance_AppCompat_Subhead_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Title_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Tooltip
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Menu
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionMode_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button_Colored
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_DropDownItem
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_PopupMenu_Header
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_PopupMenu_Large
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_PopupMenu_Small
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Switch
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem
:
Int
static
val
Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item
:
Int
static
val
Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle
:
Int
static
val
Base_TextAppearance_Widget_AppCompat_Toolbar_Title
:
Int
static
val
Base_ThemeOverlay_AppCompat
:
Int
static
val
Base_ThemeOverlay_AppCompat_ActionBar
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dark
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dark_ActionBar
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dialog
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dialog_Alert
:
Int
static
val
Base_ThemeOverlay_AppCompat_Light
:
Int
static
val
Base_ThemeOverlay_MaterialComponents_Dialog
:
Int
static
val
Base_ThemeOverlay_MaterialComponents_Dialog_Alert
:
Int
static
val
Base_Theme_AppCompat
:
Int
static
val
Base_Theme_AppCompat_CompactMenu
:
Int
static
val
Base_Theme_AppCompat_Dialog
:
Int
static
val
Base_Theme_AppCompat_DialogWhenLarge
:
Int
static
val
Base_Theme_AppCompat_Dialog_Alert
:
Int
static
val
Base_Theme_AppCompat_Dialog_FixedSize
:
Int
static
val
Base_Theme_AppCompat_Dialog_MinWidth
:
Int
static
val
Base_Theme_AppCompat_Light
:
Int
static
val
Base_Theme_AppCompat_Light_DarkActionBar
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog
:
Int
static
val
Base_Theme_AppCompat_Light_DialogWhenLarge
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog_Alert
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog_FixedSize
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog_MinWidth
:
Int
static
val
Base_Theme_MaterialComponents
:
Int
static
val
Base_Theme_MaterialComponents_Bridge
:
Int
static
val
Base_Theme_MaterialComponents_CompactMenu
:
Int
static
val
Base_Theme_MaterialComponents_Dialog
:
Int
static
val
Base_Theme_MaterialComponents_DialogWhenLarge
:
Int
static
val
Base_Theme_MaterialComponents_Dialog_Alert
:
Int
static
val
Base_Theme_MaterialComponents_Dialog_FixedSize
:
Int
static
val
Base_Theme_MaterialComponents_Dialog_MinWidth
:
Int
static
val
Base_Theme_MaterialComponents_Light
:
Int
static
val
Base_Theme_MaterialComponents_Light_Bridge
:
Int
static
val
Base_Theme_MaterialComponents_Light_DarkActionBar
:
Int
static
val
Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge
:
Int
static
val
Base_Theme_MaterialComponents_Light_Dialog
:
Int
static
val
Base_Theme_MaterialComponents_Light_DialogWhenLarge
:
Int
static
val
Base_Theme_MaterialComponents_Light_Dialog_Alert
:
Int
static
val
Base_Theme_MaterialComponents_Light_Dialog_FixedSize
:
Int
static
val
Base_Theme_MaterialComponents_Light_Dialog_MinWidth
:
Int
static
val
Base_V14_ThemeOverlay_MaterialComponents_Dialog
:
Int
static
val
Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert
:
Int
static
val
Base_V14_Theme_MaterialComponents
:
Int
static
val
Base_V14_Theme_MaterialComponents_Bridge
:
Int
static
val
Base_V14_Theme_MaterialComponents_Dialog
:
Int
static
val
Base_V14_Theme_MaterialComponents_Light
:
Int
static
val
Base_V14_Theme_MaterialComponents_Light_Bridge
:
Int
static
val
Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge
:
Int
static
val
Base_V14_Theme_MaterialComponents_Light_Dialog
:
Int
static
val
Base_V21_ThemeOverlay_AppCompat_Dialog
:
Int
static
val
Base_V21_Theme_AppCompat
:
Int
static
val
Base_V21_Theme_AppCompat_Dialog
:
Int
static
val
Base_V21_Theme_AppCompat_Light
:
Int
static
val
Base_V21_Theme_AppCompat_Light_Dialog
:
Int
static
val
Base_V22_Theme_AppCompat
:
Int
static
val
Base_V22_Theme_AppCompat_Light
:
Int
static
val
Base_V23_Theme_AppCompat
:
Int
static
val
Base_V23_Theme_AppCompat_Light
:
Int
static
val
Base_V26_Theme_AppCompat
:
Int
static
val
Base_V26_Theme_AppCompat_Light
:
Int
static
val
Base_V26_Widget_AppCompat_Toolbar
:
Int
static
val
Base_V28_Theme_AppCompat
:
Int
static
val
Base_V28_Theme_AppCompat_Light
:
Int
static
val
Base_V7_ThemeOverlay_AppCompat_Dialog
:
Int
static
val
Base_V7_Theme_AppCompat
:
Int
static
val
Base_V7_Theme_AppCompat_Dialog
:
Int
static
val
Base_V7_Theme_AppCompat_Light
:
Int
static
val
Base_V7_Theme_AppCompat_Light_Dialog
:
Int
static
val
Base_V7_Widget_AppCompat_AutoCompleteTextView
:
Int
static
val
Base_V7_Widget_AppCompat_EditText
:
Int
static
val
Base_V7_Widget_AppCompat_Toolbar
:
Int
static
val
Base_Widget_AppCompat_ActionBar
:
Int
static
val
Base_Widget_AppCompat_ActionBar_Solid
:
Int
static
val
Base_Widget_AppCompat_ActionBar_TabBar
:
Int
static
val
Base_Widget_AppCompat_ActionBar_TabText
:
Int
static
val
Base_Widget_AppCompat_ActionBar_TabView
:
Int
static
val
Base_Widget_AppCompat_ActionButton
:
Int
static
val
Base_Widget_AppCompat_ActionButton_CloseMode
:
Int
static
val
Base_Widget_AppCompat_ActionButton_Overflow
:
Int
static
val
Base_Widget_AppCompat_ActionMode
:
Int
static
val
Base_Widget_AppCompat_ActivityChooserView
:
Int
static
val
Base_Widget_AppCompat_AutoCompleteTextView
:
Int
static
val
Base_Widget_AppCompat_Button
:
Int
static
val
Base_Widget_AppCompat_ButtonBar
:
Int
static
val
Base_Widget_AppCompat_ButtonBar_AlertDialog
:
Int
static
val
Base_Widget_AppCompat_Button_Borderless
:
Int
static
val
Base_Widget_AppCompat_Button_Borderless_Colored
:
Int
static
val
Base_Widget_AppCompat_Button_ButtonBar_AlertDialog
:
Int
static
val
Base_Widget_AppCompat_Button_Colored
:
Int
static
val
Base_Widget_AppCompat_Button_Small
:
Int
static
val
Base_Widget_AppCompat_CompoundButton_CheckBox
:
Int
static
val
Base_Widget_AppCompat_CompoundButton_RadioButton
:
Int
static
val
Base_Widget_AppCompat_CompoundButton_Switch
:
Int
static
val
Base_Widget_AppCompat_DrawerArrowToggle
:
Int
static
val
Base_Widget_AppCompat_DrawerArrowToggle_Common
:
Int
static
val
Base_Widget_AppCompat_DropDownItem_Spinner
:
Int
static
val
Base_Widget_AppCompat_EditText
:
Int
static
val
Base_Widget_AppCompat_ImageButton
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_Solid
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabBar
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabText
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabView
:
Int
static
val
Base_Widget_AppCompat_Light_PopupMenu
:
Int
static
val
Base_Widget_AppCompat_Light_PopupMenu_Overflow
:
Int
static
val
Base_Widget_AppCompat_ListMenuView
:
Int
static
val
Base_Widget_AppCompat_ListPopupWindow
:
Int
static
val
Base_Widget_AppCompat_ListView
:
Int
static
val
Base_Widget_AppCompat_ListView_DropDown
:
Int
static
val
Base_Widget_AppCompat_ListView_Menu
:
Int
static
val
Base_Widget_AppCompat_PopupMenu
:
Int
static
val
Base_Widget_AppCompat_PopupMenu_Overflow
:
Int
static
val
Base_Widget_AppCompat_PopupWindow
:
Int
static
val
Base_Widget_AppCompat_ProgressBar
:
Int
static
val
Base_Widget_AppCompat_ProgressBar_Horizontal
:
Int
static
val
Base_Widget_AppCompat_RatingBar
:
Int
static
val
Base_Widget_AppCompat_RatingBar_Indicator
:
Int
static
val
Base_Widget_AppCompat_RatingBar_Small
:
Int
static
val
Base_Widget_AppCompat_SearchView
:
Int
static
val
Base_Widget_AppCompat_SearchView_ActionBar
:
Int
static
val
Base_Widget_AppCompat_SeekBar
:
Int
static
val
Base_Widget_AppCompat_SeekBar_Discrete
:
Int
static
val
Base_Widget_AppCompat_Spinner
:
Int
static
val
Base_Widget_AppCompat_Spinner_Underlined
:
Int
static
val
Base_Widget_AppCompat_TextView_SpinnerItem
:
Int
static
val
Base_Widget_AppCompat_Toolbar
:
Int
static
val
Base_Widget_AppCompat_Toolbar_Button_Navigation
:
Int
static
val
Base_Widget_Design_TabLayout
:
Int
static
val
Base_Widget_MaterialComponents_Chip
:
Int
static
val
Base_Widget_MaterialComponents_TextInputEditText
:
Int
static
val
Base_Widget_MaterialComponents_TextInputLayout
:
Int
static
val
CardView
:
Int
static
val
CardView_Dark
:
Int
static
val
CardView_Light
:
Int
static
val
Platform_AppCompat
:
Int
static
val
Platform_AppCompat_Light
:
Int
static
val
Platform_MaterialComponents
:
Int
static
val
Platform_MaterialComponents_Dialog
:
Int
static
val
Platform_MaterialComponents_Light
:
Int
static
val
Platform_MaterialComponents_Light_Dialog
:
Int
static
val
Platform_ThemeOverlay_AppCompat
:
Int
static
val
Platform_ThemeOverlay_AppCompat_Dark
:
Int
static
val
Platform_ThemeOverlay_AppCompat_Light
:
Int
static
val
Platform_V21_AppCompat
:
Int
static
val
Platform_V21_AppCompat_Light
:
Int
static
val
Platform_V25_AppCompat
:
Int
static
val
Platform_V25_AppCompat_Light
:
Int
static
val
Platform_Widget_AppCompat_Spinner
:
Int
static
val
RtlOverlay_DialogWindowTitle_AppCompat
:
Int
static
val
RtlOverlay_Widget_AppCompat_ActionBar_TitleItem
:
Int
static
val
RtlOverlay_Widget_AppCompat_DialogTitle_Icon
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_Text
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_Title
:
Int
static
val
RtlOverlay_Widget_AppCompat_SearchView_MagIcon
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Query
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Text
:
Int
static
val
RtlUnderlay_Widget_AppCompat_ActionButton
:
Int
static
val
RtlUnderlay_Widget_AppCompat_ActionButton_Overflow
:
Int
static
val
TextAppearance_AppCompat
:
Int
static
val
TextAppearance_AppCompat_Body1
:
Int
static
val
TextAppearance_AppCompat_Body2
:
Int
static
val
TextAppearance_AppCompat_Button
:
Int
static
val
TextAppearance_AppCompat_Caption
:
Int
static
val
TextAppearance_AppCompat_Display1
:
Int
static
val
TextAppearance_AppCompat_Display2
:
Int
static
val
TextAppearance_AppCompat_Display3
:
Int
static
val
TextAppearance_AppCompat_Display4
:
Int
static
val
TextAppearance_AppCompat_Headline
:
Int
static
val
TextAppearance_AppCompat_Inverse
:
Int
static
val
TextAppearance_AppCompat_Large
:
Int
static
val
TextAppearance_AppCompat_Large_Inverse
:
Int
static
val
TextAppearance_AppCompat_Light_SearchResult_Subtitle
:
Int
static
val
TextAppearance_AppCompat_Light_SearchResult_Title
:
Int
static
val
TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
:
Int
static
val
TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
:
Int
static
val
TextAppearance_AppCompat_Medium
:
Int
static
val
TextAppearance_AppCompat_Medium_Inverse
:
Int
static
val
TextAppearance_AppCompat_Menu
:
Int
static
val
TextAppearance_AppCompat_SearchResult_Subtitle
:
Int
static
val
TextAppearance_AppCompat_SearchResult_Title
:
Int
static
val
TextAppearance_AppCompat_Small
:
Int
static
val
TextAppearance_AppCompat_Small_Inverse
:
Int
static
val
TextAppearance_AppCompat_Subhead
:
Int
static
val
TextAppearance_AppCompat_Subhead_Inverse
:
Int
static
val
TextAppearance_AppCompat_Title
:
Int
static
val
TextAppearance_AppCompat_Title_Inverse
:
Int
static
val
TextAppearance_AppCompat_Tooltip
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Menu
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Subtitle
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Title
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Subtitle
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Title
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_Button
:
Int
static
val
TextAppearance_AppCompat_Widget_Button_Borderless_Colored
:
Int
static
val
TextAppearance_AppCompat_Widget_Button_Colored
:
Int
static
val
TextAppearance_AppCompat_Widget_Button_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_DropDownItem
:
Int
static
val
TextAppearance_AppCompat_Widget_PopupMenu_Header
:
Int
static
val
TextAppearance_AppCompat_Widget_PopupMenu_Large
:
Int
static
val
TextAppearance_AppCompat_Widget_PopupMenu_Small
:
Int
static
val
TextAppearance_AppCompat_Widget_Switch
:
Int
static
val
TextAppearance_AppCompat_Widget_TextView_SpinnerItem
:
Int
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
TextAppearance_Design_CollapsingToolbar_Expanded
:
Int
static
val
TextAppearance_Design_Counter
:
Int
static
val
TextAppearance_Design_Counter_Overflow
:
Int
static
val
TextAppearance_Design_Error
:
Int
static
val
TextAppearance_Design_HelperText
:
Int
static
val
TextAppearance_Design_Hint
:
Int
static
val
TextAppearance_Design_Snackbar_Message
:
Int
static
val
TextAppearance_Design_Tab
:
Int
static
val
TextAppearance_MaterialComponents_Body1
:
Int
static
val
TextAppearance_MaterialComponents_Body2
:
Int
static
val
TextAppearance_MaterialComponents_Button
:
Int
static
val
TextAppearance_MaterialComponents_Caption
:
Int
static
val
TextAppearance_MaterialComponents_Chip
:
Int
static
val
TextAppearance_MaterialComponents_Headline1
:
Int
static
val
TextAppearance_MaterialComponents_Headline2
:
Int
static
val
TextAppearance_MaterialComponents_Headline3
:
Int
static
val
TextAppearance_MaterialComponents_Headline4
:
Int
static
val
TextAppearance_MaterialComponents_Headline5
:
Int
static
val
TextAppearance_MaterialComponents_Headline6
:
Int
static
val
TextAppearance_MaterialComponents_Overline
:
Int
static
val
TextAppearance_MaterialComponents_Subtitle1
:
Int
static
val
TextAppearance_MaterialComponents_Subtitle2
:
Int
static
val
TextAppearance_MaterialComponents_Tab
:
Int
static
val
TextAppearance_Widget_AppCompat_ExpandedMenu_Item
:
Int
static
val
TextAppearance_Widget_AppCompat_Toolbar_Subtitle
:
Int
static
val
TextAppearance_Widget_AppCompat_Toolbar_Title
:
Int
static
val
ThemeOverlay_AppCompat
:
Int
static
val
ThemeOverlay_AppCompat_ActionBar
:
Int
static
val
ThemeOverlay_AppCompat_Dark
:
Int
static
val
ThemeOverlay_AppCompat_Dark_ActionBar
:
Int
static
val
ThemeOverlay_AppCompat_Dialog
:
Int
static
val
ThemeOverlay_AppCompat_Dialog_Alert
:
Int
static
val
ThemeOverlay_AppCompat_Light
:
Int
static
val
ThemeOverlay_MaterialComponents
:
Int
static
val
ThemeOverlay_MaterialComponents_ActionBar
:
Int
static
val
ThemeOverlay_MaterialComponents_Dark
:
Int
static
val
ThemeOverlay_MaterialComponents_Dark_ActionBar
:
Int
static
val
ThemeOverlay_MaterialComponents_Dialog
:
Int
static
val
ThemeOverlay_MaterialComponents_Dialog_Alert
:
Int
static
val
ThemeOverlay_MaterialComponents_Light
:
Int
static
val
ThemeOverlay_MaterialComponents_TextInputEditText
:
Int
static
val
ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox
:
Int
static
val
ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense
:
Int
static
val
ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox
:
Int
static
val
ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense
:
Int
static
val
Theme_AppCompat
:
Int
static
val
Theme_AppCompat_CompactMenu
:
Int
static
val
Theme_AppCompat_DayNight
:
Int
static
val
Theme_AppCompat_DayNight_DarkActionBar
:
Int
static
val
Theme_AppCompat_DayNight_Dialog
:
Int
static
val
Theme_AppCompat_DayNight_DialogWhenLarge
:
Int
static
val
Theme_AppCompat_DayNight_Dialog_Alert
:
Int
static
val
Theme_AppCompat_DayNight_Dialog_MinWidth
:
Int
static
val
Theme_AppCompat_DayNight_NoActionBar
:
Int
static
val
Theme_AppCompat_Dialog
:
Int
static
val
Theme_AppCompat_DialogWhenLarge
:
Int
static
val
Theme_AppCompat_Dialog_Alert
:
Int
static
val
Theme_AppCompat_Dialog_MinWidth
:
Int
static
val
Theme_AppCompat_Light
:
Int
static
val
Theme_AppCompat_Light_DarkActionBar
:
Int
static
val
Theme_AppCompat_Light_Dialog
:
Int
static
val
Theme_AppCompat_Light_DialogWhenLarge
:
Int
static
val
Theme_AppCompat_Light_Dialog_Alert
:
Int
static
val
Theme_AppCompat_Light_Dialog_MinWidth
:
Int
static
val
Theme_AppCompat_Light_NoActionBar
:
Int
static
val
Theme_AppCompat_NoActionBar
:
Int
static
val
Theme_Design
:
Int
static
val
Theme_Design_BottomSheetDialog
:
Int
static
val
Theme_Design_Light
:
Int
static
val
Theme_Design_Light_BottomSheetDialog
:
Int
static
val
Theme_Design_Light_NoActionBar
:
Int
static
val
Theme_Design_NoActionBar
:
Int
static
val
Theme_MaterialComponents
:
Int
static
val
Theme_MaterialComponents_BottomSheetDialog
:
Int
static
val
Theme_MaterialComponents_Bridge
:
Int
static
val
Theme_MaterialComponents_CompactMenu
:
Int
static
val
Theme_MaterialComponents_Dialog
:
Int
static
val
Theme_MaterialComponents_DialogWhenLarge
:
Int
static
val
Theme_MaterialComponents_Dialog_Alert
:
Int
static
val
Theme_MaterialComponents_Dialog_MinWidth
:
Int
static
val
Theme_MaterialComponents_Light
:
Int
static
val
Theme_MaterialComponents_Light_BottomSheetDialog
:
Int
static
val
Theme_MaterialComponents_Light_Bridge
:
Int
static
val
Theme_MaterialComponents_Light_DarkActionBar
:
Int
static
val
Theme_MaterialComponents_Light_DarkActionBar_Bridge
:
Int
static
val
Theme_MaterialComponents_Light_Dialog
:
Int
static
val
Theme_MaterialComponents_Light_DialogWhenLarge
:
Int
static
val
Theme_MaterialComponents_Light_Dialog_Alert
:
Int
static
val
Theme_MaterialComponents_Light_Dialog_MinWidth
:
Int
static
val
Theme_MaterialComponents_Light_NoActionBar
:
Int
static
val
Theme_MaterialComponents_Light_NoActionBar_Bridge
:
Int
static
val
Theme_MaterialComponents_NoActionBar
:
Int
static
val
Theme_MaterialComponents_NoActionBar_Bridge
:
Int
static
val
Widget_AppCompat_ActionBar
:
Int
static
val
Widget_AppCompat_ActionBar_Solid
:
Int
static
val
Widget_AppCompat_ActionBar_TabBar
:
Int
static
val
Widget_AppCompat_ActionBar_TabText
:
Int
static
val
Widget_AppCompat_ActionBar_TabView
:
Int
static
val
Widget_AppCompat_ActionButton
:
Int
static
val
Widget_AppCompat_ActionButton_CloseMode
:
Int
static
val
Widget_AppCompat_ActionButton_Overflow
:
Int
static
val
Widget_AppCompat_ActionMode
:
Int
static
val
Widget_AppCompat_ActivityChooserView
:
Int
static
val
Widget_AppCompat_AutoCompleteTextView
:
Int
static
val
Widget_AppCompat_Button
:
Int
static
val
Widget_AppCompat_ButtonBar
:
Int
static
val
Widget_AppCompat_ButtonBar_AlertDialog
:
Int
static
val
Widget_AppCompat_Button_Borderless
:
Int
static
val
Widget_AppCompat_Button_Borderless_Colored
:
Int
static
val
Widget_AppCompat_Button_ButtonBar_AlertDialog
:
Int
static
val
Widget_AppCompat_Button_Colored
:
Int
static
val
Widget_AppCompat_Button_Small
:
Int
static
val
Widget_AppCompat_CompoundButton_CheckBox
:
Int
static
val
Widget_AppCompat_CompoundButton_RadioButton
:
Int
static
val
Widget_AppCompat_CompoundButton_Switch
:
Int
static
val
Widget_AppCompat_DrawerArrowToggle
:
Int
static
val
Widget_AppCompat_DropDownItem_Spinner
:
Int
static
val
Widget_AppCompat_EditText
:
Int
static
val
Widget_AppCompat_ImageButton
:
Int
static
val
Widget_AppCompat_Light_ActionBar
:
Int
static
val
Widget_AppCompat_Light_ActionBar_Solid
:
Int
static
val
Widget_AppCompat_Light_ActionBar_Solid_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabBar
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabBar_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabText
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabText_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabView
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabView_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionButton
:
Int
static
val
Widget_AppCompat_Light_ActionButton_CloseMode
:
Int
static
val
Widget_AppCompat_Light_ActionButton_Overflow
:
Int
static
val
Widget_AppCompat_Light_ActionMode_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActivityChooserView
:
Int
static
val
Widget_AppCompat_Light_AutoCompleteTextView
:
Int
static
val
Widget_AppCompat_Light_DropDownItem_Spinner
:
Int
static
val
Widget_AppCompat_Light_ListPopupWindow
:
Int
static
val
Widget_AppCompat_Light_ListView_DropDown
:
Int
static
val
Widget_AppCompat_Light_PopupMenu
:
Int
static
val
Widget_AppCompat_Light_PopupMenu_Overflow
:
Int
static
val
Widget_AppCompat_Light_SearchView
:
Int
static
val
Widget_AppCompat_Light_Spinner_DropDown_ActionBar
:
Int
static
val
Widget_AppCompat_ListMenuView
:
Int
static
val
Widget_AppCompat_ListPopupWindow
:
Int
static
val
Widget_AppCompat_ListView
:
Int
static
val
Widget_AppCompat_ListView_DropDown
:
Int
static
val
Widget_AppCompat_ListView_Menu
:
Int
static
val
Widget_AppCompat_PopupMenu
:
Int
static
val
Widget_AppCompat_PopupMenu_Overflow
:
Int
static
val
Widget_AppCompat_PopupWindow
:
Int
static
val
Widget_AppCompat_ProgressBar
:
Int
static
val
Widget_AppCompat_ProgressBar_Horizontal
:
Int
static
val
Widget_AppCompat_RatingBar
:
Int
static
val
Widget_AppCompat_RatingBar_Indicator
:
Int
static
val
Widget_AppCompat_RatingBar_Small
:
Int
static
val
Widget_AppCompat_SearchView
:
Int
static
val
Widget_AppCompat_SearchView_ActionBar
:
Int
static
val
Widget_AppCompat_SeekBar
:
Int
static
val
Widget_AppCompat_SeekBar_Discrete
:
Int
static
val
Widget_AppCompat_Spinner
:
Int
static
val
Widget_AppCompat_Spinner_DropDown
:
Int
static
val
Widget_AppCompat_Spinner_DropDown_ActionBar
:
Int
static
val
Widget_AppCompat_Spinner_Underlined
:
Int
static
val
Widget_AppCompat_TextView_SpinnerItem
:
Int
static
val
Widget_AppCompat_Toolbar
:
Int
static
val
Widget_AppCompat_Toolbar_Button_Navigation
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
static
val
Widget_Design_AppBarLayout
:
Int
static
val
Widget_Design_BottomNavigationView
:
Int
static
val
Widget_Design_BottomSheet_Modal
:
Int
static
val
Widget_Design_CollapsingToolbar
:
Int
static
val
Widget_Design_FloatingActionButton
:
Int
static
val
Widget_Design_NavigationView
:
Int
static
val
Widget_Design_ScrimInsetsFrameLayout
:
Int
static
val
Widget_Design_Snackbar
:
Int
static
val
Widget_Design_TabLayout
:
Int
static
val
Widget_Design_TextInputLayout
:
Int
static
val
Widget_MaterialComponents_BottomAppBar
:
Int
static
val
Widget_MaterialComponents_BottomAppBar_Colored
:
Int
static
val
Widget_MaterialComponents_BottomNavigationView
:
Int
static
val
Widget_MaterialComponents_BottomNavigationView_Colored
:
Int
static
val
Widget_MaterialComponents_BottomSheet_Modal
:
Int
static
val
Widget_MaterialComponents_Button
:
Int
static
val
Widget_MaterialComponents_Button_Icon
:
Int
static
val
Widget_MaterialComponents_Button_OutlinedButton
:
Int
static
val
Widget_MaterialComponents_Button_OutlinedButton_Icon
:
Int
static
val
Widget_MaterialComponents_Button_TextButton
:
Int
static
val
Widget_MaterialComponents_Button_TextButton_Dialog
:
Int
static
val
Widget_MaterialComponents_Button_TextButton_Dialog_Icon
:
Int
static
val
Widget_MaterialComponents_Button_TextButton_Icon
:
Int
static
val
Widget_MaterialComponents_Button_UnelevatedButton
:
Int
static
val
Widget_MaterialComponents_Button_UnelevatedButton_Icon
:
Int
static
val
Widget_MaterialComponents_CardView
:
Int
static
val
Widget_MaterialComponents_ChipGroup
:
Int
static
val
Widget_MaterialComponents_Chip_Action
:
Int
static
val
Widget_MaterialComponents_Chip_Choice
:
Int
static
val
Widget_MaterialComponents_Chip_Entry
:
Int
static
val
Widget_MaterialComponents_Chip_Filter
:
Int
static
val
Widget_MaterialComponents_FloatingActionButton
:
Int
static
val
Widget_MaterialComponents_NavigationView
:
Int
static
val
Widget_MaterialComponents_Snackbar
:
Int
static
val
Widget_MaterialComponents_Snackbar_FullWidth
:
Int
static
val
Widget_MaterialComponents_TabLayout
:
Int
static
val
Widget_MaterialComponents_TabLayout_Colored
:
Int
static
val
Widget_MaterialComponents_TextInputEditText_FilledBox
:
Int
static
val
Widget_MaterialComponents_TextInputEditText_FilledBox_Dense
:
Int
static
val
Widget_MaterialComponents_TextInputEditText_OutlinedBox
:
Int
static
val
Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense
:
Int
static
val
Widget_MaterialComponents_TextInputLayout_FilledBox
:
Int
static
val
Widget_MaterialComponents_TextInputLayout_FilledBox_Dense
:
Int
static
val
Widget_MaterialComponents_TextInputLayout_OutlinedBox
:
Int
static
val
Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense
:
Int
static
val
Widget_MaterialComponents_Toolbar
:
Int
static
val
Widget_Support_CoordinatorLayout
:
Int
class
styleable
Module Contents
static
val
ActionBar
:
IntArray
static
val
ActionBarLayout
:
IntArray
static
val
ActionBarLayout_android_layout_gravity
:
Int
static
val
ActionBar_background
:
Int
static
val
ActionBar_backgroundSplit
:
Int
static
val
ActionBar_backgroundStacked
:
Int
static
val
ActionBar_contentInsetEnd
:
Int
static
val
ActionBar_contentInsetEndWithActions
:
Int
static
val
ActionBar_contentInsetLeft
:
Int
static
val
ActionBar_contentInsetRight
:
Int
static
val
ActionBar_contentInsetStart
:
Int
static
val
ActionBar_contentInsetStartWithNavigation
:
Int
static
val
ActionBar_customNavigationLayout
:
Int
static
val
ActionBar_displayOptions
:
Int
static
val
ActionBar_divider
:
Int
static
val
ActionBar_elevation
:
Int
static
val
ActionBar_height
:
Int
static
val
ActionBar_hideOnContentScroll
:
Int
static
val
ActionBar_homeAsUpIndicator
:
Int
static
val
ActionBar_homeLayout
:
Int
static
val
ActionBar_icon
:
Int
static
val
ActionBar_indeterminateProgressStyle
:
Int
static
val
ActionBar_itemPadding
:
Int
static
val
ActionBar_logo
:
Int
static
val
ActionBar_navigationMode
:
Int
static
val
ActionBar_popupTheme
:
Int
static
val
ActionBar_progressBarPadding
:
Int
static
val
ActionBar_progressBarStyle
:
Int
static
val
ActionBar_subtitle
:
Int
static
val
ActionBar_subtitleTextStyle
:
Int
static
val
ActionBar_title
:
Int
static
val
ActionBar_titleTextStyle
:
Int
static
val
ActionMenuItemView
:
IntArray
static
val
ActionMenuItemView_android_minWidth
:
Int
static
val
ActionMode
:
IntArray
static
val
ActionMode_background
:
Int
static
val
ActionMode_backgroundSplit
:
Int
static
val
ActionMode_closeItemLayout
:
Int
static
val
ActionMode_height
:
Int
static
val
ActionMode_subtitleTextStyle
:
Int
static
val
ActionMode_titleTextStyle
:
Int
static
val
ActivityChooserView
:
IntArray
static
val
ActivityChooserView_expandActivityOverflowButtonDrawable
:
Int
static
val
ActivityChooserView_initialActivityCount
:
Int
static
val
AlertDialog
:
IntArray
static
val
AlertDialog_android_layout
:
Int
static
val
AlertDialog_buttonIconDimen
:
Int
static
val
AlertDialog_buttonPanelSideLayout
:
Int
static
val
AlertDialog_listItemLayout
:
Int
static
val
AlertDialog_listLayout
:
Int
static
val
AlertDialog_multiChoiceItemLayout
:
Int
static
val
AlertDialog_showTitle
:
Int
static
val
AlertDialog_singleChoiceItemLayout
:
Int
static
val
AppBarLayout
:
IntArray
static
val
AppBarLayoutStates
:
IntArray
static
val
AppBarLayoutStates_state_collapsed
:
Int
static
val
AppBarLayoutStates_state_collapsible
:
Int
static
val
AppBarLayoutStates_state_liftable
:
Int
static
val
AppBarLayoutStates_state_lifted
:
Int
static
val
AppBarLayout_Layout
:
IntArray
static
val
AppBarLayout_Layout_layout_scrollFlags
:
Int
static
val
AppBarLayout_Layout_layout_scrollInterpolator
:
Int
static
val
AppBarLayout_android_background
:
Int
static
val
AppBarLayout_android_keyboardNavigationCluster
:
Int
static
val
AppBarLayout_android_touchscreenBlocksFocus
:
Int
static
val
AppBarLayout_elevation
:
Int
static
val
AppBarLayout_expanded
:
Int
static
val
AppBarLayout_liftOnScroll
:
Int
static
val
AppCompatImageView
:
IntArray
static
val
AppCompatImageView_android_src
:
Int
static
val
AppCompatImageView_srcCompat
:
Int
static
val
AppCompatImageView_tint
:
Int
static
val
AppCompatImageView_tintMode
:
Int
static
val
AppCompatSeekBar
:
IntArray
static
val
AppCompatSeekBar_android_thumb
:
Int
static
val
AppCompatSeekBar_tickMark
:
Int
static
val
AppCompatSeekBar_tickMarkTint
:
Int
static
val
AppCompatSeekBar_tickMarkTintMode
:
Int
static
val
AppCompatTextHelper
:
IntArray
static
val
AppCompatTextHelper_android_drawableBottom
:
Int
static
val
AppCompatTextHelper_android_drawableEnd
:
Int
static
val
AppCompatTextHelper_android_drawableLeft
:
Int
static
val
AppCompatTextHelper_android_drawableRight
:
Int
static
val
AppCompatTextHelper_android_drawableStart
:
Int
static
val
AppCompatTextHelper_android_drawableTop
:
Int
static
val
AppCompatTextHelper_android_textAppearance
:
Int
static
val
AppCompatTextView
:
IntArray
static
val
AppCompatTextView_android_textAppearance
:
Int
static
val
AppCompatTextView_autoSizeMaxTextSize
:
Int
static
val
AppCompatTextView_autoSizeMinTextSize
:
Int
static
val
AppCompatTextView_autoSizePresetSizes
:
Int
static
val
AppCompatTextView_autoSizeStepGranularity
:
Int
static
val
AppCompatTextView_autoSizeTextType
:
Int
static
val
AppCompatTextView_firstBaselineToTopHeight
:
Int
static
val
AppCompatTextView_fontFamily
:
Int
static
val
AppCompatTextView_lastBaselineToBottomHeight
:
Int
static
val
AppCompatTextView_lineHeight
:
Int
static
val
AppCompatTextView_textAllCaps
:
Int
static
val
AppCompatTheme
:
IntArray
static
val
AppCompatTheme_actionBarDivider
:
Int
static
val
AppCompatTheme_actionBarItemBackground
:
Int
static
val
AppCompatTheme_actionBarPopupTheme
:
Int
static
val
AppCompatTheme_actionBarSize
:
Int
static
val
AppCompatTheme_actionBarSplitStyle
:
Int
static
val
AppCompatTheme_actionBarStyle
:
Int
static
val
AppCompatTheme_actionBarTabBarStyle
:
Int
static
val
AppCompatTheme_actionBarTabStyle
:
Int
static
val
AppCompatTheme_actionBarTabTextStyle
:
Int
static
val
AppCompatTheme_actionBarTheme
:
Int
static
val
AppCompatTheme_actionBarWidgetTheme
:
Int
static
val
AppCompatTheme_actionButtonStyle
:
Int
static
val
AppCompatTheme_actionDropDownStyle
:
Int
static
val
AppCompatTheme_actionMenuTextAppearance
:
Int
static
val
AppCompatTheme_actionMenuTextColor
:
Int
static
val
AppCompatTheme_actionModeBackground
:
Int
static
val
AppCompatTheme_actionModeCloseButtonStyle
:
Int
static
val
AppCompatTheme_actionModeCloseDrawable
:
Int
static
val
AppCompatTheme_actionModeCopyDrawable
:
Int
static
val
AppCompatTheme_actionModeCutDrawable
:
Int
static
val
AppCompatTheme_actionModeFindDrawable
:
Int
static
val
AppCompatTheme_actionModePasteDrawable
:
Int
static
val
AppCompatTheme_actionModePopupWindowStyle
:
Int
static
val
AppCompatTheme_actionModeSelectAllDrawable
:
Int
static
val
AppCompatTheme_actionModeShareDrawable
:
Int
static
val
AppCompatTheme_actionModeSplitBackground
:
Int
static
val
AppCompatTheme_actionModeStyle
:
Int
static
val
AppCompatTheme_actionModeWebSearchDrawable
:
Int
static
val
AppCompatTheme_actionOverflowButtonStyle
:
Int
static
val
AppCompatTheme_actionOverflowMenuStyle
:
Int
static
val
AppCompatTheme_activityChooserViewStyle
:
Int
static
val
AppCompatTheme_alertDialogButtonGroupStyle
:
Int
static
val
AppCompatTheme_alertDialogCenterButtons
:
Int
static
val
AppCompatTheme_alertDialogStyle
:
Int
static
val
AppCompatTheme_alertDialogTheme
:
Int
static
val
AppCompatTheme_android_windowAnimationStyle
:
Int
static
val
AppCompatTheme_android_windowIsFloating
:
Int
static
val
AppCompatTheme_autoCompleteTextViewStyle
:
Int
static
val
AppCompatTheme_borderlessButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarNegativeButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarNeutralButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarPositiveButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarStyle
:
Int
static
val
AppCompatTheme_buttonStyle
:
Int
static
val
AppCompatTheme_buttonStyleSmall
:
Int
static
val
AppCompatTheme_checkboxStyle
:
Int
static
val
AppCompatTheme_checkedTextViewStyle
:
Int
static
val
AppCompatTheme_colorAccent
:
Int
static
val
AppCompatTheme_colorBackgroundFloating
:
Int
static
val
AppCompatTheme_colorButtonNormal
:
Int
static
val
AppCompatTheme_colorControlActivated
:
Int
static
val
AppCompatTheme_colorControlHighlight
:
Int
static
val
AppCompatTheme_colorControlNormal
:
Int
static
val
AppCompatTheme_colorError
:
Int
static
val
AppCompatTheme_colorPrimary
:
Int
static
val
AppCompatTheme_colorPrimaryDark
:
Int
static
val
AppCompatTheme_colorSwitchThumbNormal
:
Int
static
val
AppCompatTheme_controlBackground
:
Int
static
val
AppCompatTheme_dialogCornerRadius
:
Int
static
val
AppCompatTheme_dialogPreferredPadding
:
Int
static
val
AppCompatTheme_dialogTheme
:
Int
static
val
AppCompatTheme_dividerHorizontal
:
Int
static
val
AppCompatTheme_dividerVertical
:
Int
static
val
AppCompatTheme_dropDownListViewStyle
:
Int
static
val
AppCompatTheme_dropdownListPreferredItemHeight
:
Int
static
val
AppCompatTheme_editTextBackground
:
Int
static
val
AppCompatTheme_editTextColor
:
Int
static
val
AppCompatTheme_editTextStyle
:
Int
static
val
AppCompatTheme_homeAsUpIndicator
:
Int
static
val
AppCompatTheme_imageButtonStyle
:
Int
static
val
AppCompatTheme_listChoiceBackgroundIndicator
:
Int
static
val
AppCompatTheme_listDividerAlertDialog
:
Int
static
val
AppCompatTheme_listMenuViewStyle
:
Int
static
val
AppCompatTheme_listPopupWindowStyle
:
Int
static
val
AppCompatTheme_listPreferredItemHeight
:
Int
static
val
AppCompatTheme_listPreferredItemHeightLarge
:
Int
static
val
AppCompatTheme_listPreferredItemHeightSmall
:
Int
static
val
AppCompatTheme_listPreferredItemPaddingLeft
:
Int
static
val
AppCompatTheme_listPreferredItemPaddingRight
:
Int
static
val
AppCompatTheme_panelBackground
:
Int
static
val
AppCompatTheme_panelMenuListTheme
:
Int
static
val
AppCompatTheme_panelMenuListWidth
:
Int
static
val
AppCompatTheme_popupMenuStyle
:
Int
static
val
AppCompatTheme_popupWindowStyle
:
Int
static
val
AppCompatTheme_radioButtonStyle
:
Int
static
val
AppCompatTheme_ratingBarStyle
:
Int
static
val
AppCompatTheme_ratingBarStyleIndicator
:
Int
static
val
AppCompatTheme_ratingBarStyleSmall
:
Int
static
val
AppCompatTheme_searchViewStyle
:
Int
static
val
AppCompatTheme_seekBarStyle
:
Int
static
val
AppCompatTheme_selectableItemBackground
:
Int
static
val
AppCompatTheme_selectableItemBackgroundBorderless
:
Int
static
val
AppCompatTheme_spinnerDropDownItemStyle
:
Int
static
val
AppCompatTheme_spinnerStyle
:
Int
static
val
AppCompatTheme_switchStyle
:
Int
static
val
AppCompatTheme_textAppearanceLargePopupMenu
:
Int
static
val
AppCompatTheme_textAppearanceListItem
:
Int
static
val
AppCompatTheme_textAppearanceListItemSecondary
:
Int
static
val
AppCompatTheme_textAppearanceListItemSmall
:
Int
static
val
AppCompatTheme_textAppearancePopupMenuHeader
:
Int
static
val
AppCompatTheme_textAppearanceSearchResultSubtitle
:
Int
static
val
AppCompatTheme_textAppearanceSearchResultTitle
:
Int
static
val
AppCompatTheme_textAppearanceSmallPopupMenu
:
Int
static
val
AppCompatTheme_textColorAlertDialogListItem
:
Int
static
val
AppCompatTheme_textColorSearchUrl
:
Int
static
val
AppCompatTheme_toolbarNavigationButtonStyle
:
Int
static
val
AppCompatTheme_toolbarStyle
:
Int
static
val
AppCompatTheme_tooltipForegroundColor
:
Int
static
val
AppCompatTheme_tooltipFrameBackground
:
Int
static
val
AppCompatTheme_viewInflaterClass
:
Int
static
val
AppCompatTheme_windowActionBar
:
Int
static
val
AppCompatTheme_windowActionBarOverlay
:
Int
static
val
AppCompatTheme_windowActionModeOverlay
:
Int
static
val
AppCompatTheme_windowFixedHeightMajor
:
Int
static
val
AppCompatTheme_windowFixedHeightMinor
:
Int
static
val
AppCompatTheme_windowFixedWidthMajor
:
Int
static
val
AppCompatTheme_windowFixedWidthMinor
:
Int
static
val
AppCompatTheme_windowMinWidthMajor
:
Int
static
val
AppCompatTheme_windowMinWidthMinor
:
Int
static
val
AppCompatTheme_windowNoTitle
:
Int
static
val
BottomAppBar
:
IntArray
static
val
BottomAppBar_backgroundTint
:
Int
static
val
BottomAppBar_fabAlignmentMode
:
Int
static
val
BottomAppBar_fabCradleMargin
:
Int
static
val
BottomAppBar_fabCradleRoundedCornerRadius
:
Int
static
val
BottomAppBar_fabCradleVerticalOffset
:
Int
static
val
BottomAppBar_hideOnScroll
:
Int
static
val
BottomNavigationView
:
IntArray
static
val
BottomNavigationView_elevation
:
Int
static
val
BottomNavigationView_itemBackground
:
Int
static
val
BottomNavigationView_itemHorizontalTranslationEnabled
:
Int
static
val
BottomNavigationView_itemIconSize
:
Int
static
val
BottomNavigationView_itemIconTint
:
Int
static
val
BottomNavigationView_itemTextAppearanceActive
:
Int
static
val
BottomNavigationView_itemTextAppearanceInactive
:
Int
static
val
BottomNavigationView_itemTextColor
:
Int
static
val
BottomNavigationView_labelVisibilityMode
:
Int
static
val
BottomNavigationView_menu
:
Int
static
val
BottomSheetBehavior_Layout
:
IntArray
static
val
BottomSheetBehavior_Layout_behavior_fitToContents
:
Int
static
val
BottomSheetBehavior_Layout_behavior_hideable
:
Int
static
val
BottomSheetBehavior_Layout_behavior_peekHeight
:
Int
static
val
BottomSheetBehavior_Layout_behavior_skipCollapsed
:
Int
static
val
ButtonBarLayout
:
IntArray
static
val
ButtonBarLayout_allowStacking
:
Int
static
val
CardView
:
IntArray
static
val
CardView_android_minHeight
:
Int
static
val
CardView_android_minWidth
:
Int
static
val
CardView_cardBackgroundColor
:
Int
static
val
CardView_cardCornerRadius
:
Int
static
val
CardView_cardElevation
:
Int
static
val
CardView_cardMaxElevation
:
Int
static
val
CardView_cardPreventCornerOverlap
:
Int
static
val
CardView_cardUseCompatPadding
:
Int
static
val
CardView_contentPadding
:
Int
static
val
CardView_contentPaddingBottom
:
Int
static
val
CardView_contentPaddingLeft
:
Int
static
val
CardView_contentPaddingRight
:
Int
static
val
CardView_contentPaddingTop
:
Int
static
val
Chip
:
IntArray
static
val
ChipGroup
:
IntArray
static
val
ChipGroup_checkedChip
:
Int
static
val
ChipGroup_chipSpacing
:
Int
static
val
ChipGroup_chipSpacingHorizontal
:
Int
static
val
ChipGroup_chipSpacingVertical
:
Int
static
val
ChipGroup_singleLine
:
Int
static
val
ChipGroup_singleSelection
:
Int
static
val
Chip_android_checkable
:
Int
static
val
Chip_android_ellipsize
:
Int
static
val
Chip_android_maxWidth
:
Int
static
val
Chip_android_text
:
Int
static
val
Chip_android_textAppearance
:
Int
static
val
Chip_checkedIcon
:
Int
static
val
Chip_checkedIconEnabled
:
Int
static
val
Chip_checkedIconVisible
:
Int
static
val
Chip_chipBackgroundColor
:
Int
static
val
Chip_chipCornerRadius
:
Int
static
val
Chip_chipEndPadding
:
Int
static
val
Chip_chipIcon
:
Int
static
val
Chip_chipIconEnabled
:
Int
static
val
Chip_chipIconSize
:
Int
static
val
Chip_chipIconTint
:
Int
static
val
Chip_chipIconVisible
:
Int
static
val
Chip_chipMinHeight
:
Int
static
val
Chip_chipStartPadding
:
Int
static
val
Chip_chipStrokeColor
:
Int
static
val
Chip_chipStrokeWidth
:
Int
static
val
Chip_closeIcon
:
Int
static
val
Chip_closeIconEnabled
:
Int
static
val
Chip_closeIconEndPadding
:
Int
static
val
Chip_closeIconSize
:
Int
static
val
Chip_closeIconStartPadding
:
Int
static
val
Chip_closeIconTint
:
Int
static
val
Chip_closeIconVisible
:
Int
static
val
Chip_hideMotionSpec
:
Int
static
val
Chip_iconEndPadding
:
Int
static
val
Chip_iconStartPadding
:
Int
static
val
Chip_rippleColor
:
Int
static
val
Chip_showMotionSpec
:
Int
static
val
Chip_textEndPadding
:
Int
static
val
Chip_textStartPadding
:
Int
static
val
CollapsingToolbarLayout
:
IntArray
static
val
CollapsingToolbarLayout_Layout
:
IntArray
static
val
CollapsingToolbarLayout_Layout_layout_collapseMode
:
Int
static
val
CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier
:
Int
static
val
CollapsingToolbarLayout_collapsedTitleGravity
:
Int
static
val
CollapsingToolbarLayout_collapsedTitleTextAppearance
:
Int
static
val
CollapsingToolbarLayout_contentScrim
:
Int
static
val
CollapsingToolbarLayout_expandedTitleGravity
:
Int
static
val
CollapsingToolbarLayout_expandedTitleMargin
:
Int
static
val
CollapsingToolbarLayout_expandedTitleMarginBottom
:
Int
static
val
CollapsingToolbarLayout_expandedTitleMarginEnd
:
Int
static
val
CollapsingToolbarLayout_expandedTitleMarginStart
:
Int
static
val
CollapsingToolbarLayout_expandedTitleMarginTop
:
Int
static
val
CollapsingToolbarLayout_expandedTitleTextAppearance
:
Int
static
val
CollapsingToolbarLayout_scrimAnimationDuration
:
Int
static
val
CollapsingToolbarLayout_scrimVisibleHeightTrigger
:
Int
static
val
CollapsingToolbarLayout_statusBarScrim
:
Int
static
val
CollapsingToolbarLayout_title
:
Int
static
val
CollapsingToolbarLayout_titleEnabled
:
Int
static
val
CollapsingToolbarLayout_toolbarId
:
Int
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
CompoundButton
:
IntArray
static
val
CompoundButton_android_button
:
Int
static
val
CompoundButton_buttonTint
:
Int
static
val
CompoundButton_buttonTintMode
:
Int
static
val
CoordinatorLayout
:
IntArray
static
val
CoordinatorLayout_Layout
:
IntArray
static
val
CoordinatorLayout_Layout_android_layout_gravity
:
Int
static
val
CoordinatorLayout_Layout_layout_anchor
:
Int
static
val
CoordinatorLayout_Layout_layout_anchorGravity
:
Int
static
val
CoordinatorLayout_Layout_layout_behavior
:
Int
static
val
CoordinatorLayout_Layout_layout_dodgeInsetEdges
:
Int
static
val
CoordinatorLayout_Layout_layout_insetEdge
:
Int
static
val
CoordinatorLayout_Layout_layout_keyline
:
Int
static
val
CoordinatorLayout_keylines
:
Int
static
val
CoordinatorLayout_statusBarBackground
:
Int
static
val
DesignTheme
:
IntArray
static
val
DesignTheme_bottomSheetDialogTheme
:
Int
static
val
DesignTheme_bottomSheetStyle
:
Int
static
val
DrawerArrowToggle
:
IntArray
static
val
DrawerArrowToggle_arrowHeadLength
:
Int
static
val
DrawerArrowToggle_arrowShaftLength
:
Int
static
val
DrawerArrowToggle_barLength
:
Int
static
val
DrawerArrowToggle_color
:
Int
static
val
DrawerArrowToggle_drawableSize
:
Int
static
val
DrawerArrowToggle_gapBetweenBars
:
Int
static
val
DrawerArrowToggle_spinBars
:
Int
static
val
DrawerArrowToggle_thickness
:
Int
static
val
FloatingActionButton
:
IntArray
static
val
FloatingActionButton_Behavior_Layout
:
IntArray
static
val
FloatingActionButton_Behavior_Layout_behavior_autoHide
:
Int
static
val
FloatingActionButton_backgroundTint
:
Int
static
val
FloatingActionButton_backgroundTintMode
:
Int
static
val
FloatingActionButton_borderWidth
:
Int
static
val
FloatingActionButton_elevation
:
Int
static
val
FloatingActionButton_fabCustomSize
:
Int
static
val
FloatingActionButton_fabSize
:
Int
static
val
FloatingActionButton_hideMotionSpec
:
Int
static
val
FloatingActionButton_hoveredFocusedTranslationZ
:
Int
static
val
FloatingActionButton_maxImageSize
:
Int
static
val
FloatingActionButton_pressedTranslationZ
:
Int
static
val
FloatingActionButton_rippleColor
:
Int
static
val
FloatingActionButton_showMotionSpec
:
Int
static
val
FloatingActionButton_useCompatPadding
:
Int
static
val
FlowLayout
:
IntArray
static
val
FlowLayout_itemSpacing
:
Int
static
val
FlowLayout_lineSpacing
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
ForegroundLinearLayout
:
IntArray
static
val
ForegroundLinearLayout_android_foreground
:
Int
static
val
ForegroundLinearLayout_android_foregroundGravity
:
Int
static
val
ForegroundLinearLayout_foregroundInsidePadding
:
Int
static
val
LinearLayoutCompat
:
IntArray
static
val
LinearLayoutCompat_Layout
:
IntArray
static
val
LinearLayoutCompat_Layout_android_layout_gravity
:
Int
static
val
LinearLayoutCompat_Layout_android_layout_height
:
Int
static
val
LinearLayoutCompat_Layout_android_layout_weight
:
Int
static
val
LinearLayoutCompat_Layout_android_layout_width
:
Int
static
val
LinearLayoutCompat_android_baselineAligned
:
Int
static
val
LinearLayoutCompat_android_baselineAlignedChildIndex
:
Int
static
val
LinearLayoutCompat_android_gravity
:
Int
static
val
LinearLayoutCompat_android_orientation
:
Int
static
val
LinearLayoutCompat_android_weightSum
:
Int
static
val
LinearLayoutCompat_divider
:
Int
static
val
LinearLayoutCompat_dividerPadding
:
Int
static
val
LinearLayoutCompat_measureWithLargestChild
:
Int
static
val
LinearLayoutCompat_showDividers
:
Int
static
val
ListPopupWindow
:
IntArray
static
val
ListPopupWindow_android_dropDownHorizontalOffset
:
Int
static
val
ListPopupWindow_android_dropDownVerticalOffset
:
Int
static
val
MaterialButton
:
IntArray
static
val
MaterialButton_android_insetBottom
:
Int
static
val
MaterialButton_android_insetLeft
:
Int
static
val
MaterialButton_android_insetRight
:
Int
static
val
MaterialButton_android_insetTop
:
Int
static
val
MaterialButton_backgroundTint
:
Int
static
val
MaterialButton_backgroundTintMode
:
Int
static
val
MaterialButton_cornerRadius
:
Int
static
val
MaterialButton_icon
:
Int
static
val
MaterialButton_iconGravity
:
Int
static
val
MaterialButton_iconPadding
:
Int
static
val
MaterialButton_iconSize
:
Int
static
val
MaterialButton_iconTint
:
Int
static
val
MaterialButton_iconTintMode
:
Int
static
val
MaterialButton_rippleColor
:
Int
static
val
MaterialButton_strokeColor
:
Int
static
val
MaterialButton_strokeWidth
:
Int
static
val
MaterialCardView
:
IntArray
static
val
MaterialCardView_strokeColor
:
Int
static
val
MaterialCardView_strokeWidth
:
Int
static
val
MaterialComponentsTheme
:
IntArray
static
val
MaterialComponentsTheme_bottomSheetDialogTheme
:
Int
static
val
MaterialComponentsTheme_bottomSheetStyle
:
Int
static
val
MaterialComponentsTheme_chipGroupStyle
:
Int
static
val
MaterialComponentsTheme_chipStandaloneStyle
:
Int
static
val
MaterialComponentsTheme_chipStyle
:
Int
static
val
MaterialComponentsTheme_colorAccent
:
Int
static
val
MaterialComponentsTheme_colorBackgroundFloating
:
Int
static
val
MaterialComponentsTheme_colorPrimary
:
Int
static
val
MaterialComponentsTheme_colorPrimaryDark
:
Int
static
val
MaterialComponentsTheme_colorSecondary
:
Int
static
val
MaterialComponentsTheme_editTextStyle
:
Int
static
val
MaterialComponentsTheme_floatingActionButtonStyle
:
Int
static
val
MaterialComponentsTheme_materialButtonStyle
:
Int
static
val
MaterialComponentsTheme_materialCardViewStyle
:
Int
static
val
MaterialComponentsTheme_navigationViewStyle
:
Int
static
val
MaterialComponentsTheme_scrimBackground
:
Int
static
val
MaterialComponentsTheme_snackbarButtonStyle
:
Int
static
val
MaterialComponentsTheme_tabStyle
:
Int
static
val
MaterialComponentsTheme_textAppearanceBody1
:
Int
static
val
MaterialComponentsTheme_textAppearanceBody2
:
Int
static
val
MaterialComponentsTheme_textAppearanceButton
:
Int
static
val
MaterialComponentsTheme_textAppearanceCaption
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline1
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline2
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline3
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline4
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline5
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline6
:
Int
static
val
MaterialComponentsTheme_textAppearanceOverline
:
Int
static
val
MaterialComponentsTheme_textAppearanceSubtitle1
:
Int
static
val
MaterialComponentsTheme_textAppearanceSubtitle2
:
Int
static
val
MaterialComponentsTheme_textInputStyle
:
Int
static
val
MenuGroup
:
IntArray
static
val
MenuGroup_android_checkableBehavior
:
Int
static
val
MenuGroup_android_enabled
:
Int
static
val
MenuGroup_android_id
:
Int
static
val
MenuGroup_android_menuCategory
:
Int
static
val
MenuGroup_android_orderInCategory
:
Int
static
val
MenuGroup_android_visible
:
Int
static
val
MenuItem
:
IntArray
static
val
MenuItem_actionLayout
:
Int
static
val
MenuItem_actionProviderClass
:
Int
static
val
MenuItem_actionViewClass
:
Int
static
val
MenuItem_alphabeticModifiers
:
Int
static
val
MenuItem_android_alphabeticShortcut
:
Int
static
val
MenuItem_android_checkable
:
Int
static
val
MenuItem_android_checked
:
Int
static
val
MenuItem_android_enabled
:
Int
static
val
MenuItem_android_icon
:
Int
static
val
MenuItem_android_id
:
Int
static
val
MenuItem_android_menuCategory
:
Int
static
val
MenuItem_android_numericShortcut
:
Int
static
val
MenuItem_android_onClick
:
Int
static
val
MenuItem_android_orderInCategory
:
Int
static
val
MenuItem_android_title
:
Int
static
val
MenuItem_android_titleCondensed
:
Int
static
val
MenuItem_android_visible
:
Int
static
val
MenuItem_contentDescription
:
Int
static
val
MenuItem_iconTint
:
Int
static
val
MenuItem_iconTintMode
:
Int
static
val
MenuItem_numericModifiers
:
Int
static
val
MenuItem_showAsAction
:
Int
static
val
MenuItem_tooltipText
:
Int
static
val
MenuView
:
IntArray
static
val
MenuView_android_headerBackground
:
Int
static
val
MenuView_android_horizontalDivider
:
Int
static
val
MenuView_android_itemBackground
:
Int
static
val
MenuView_android_itemIconDisabledAlpha
:
Int
static
val
MenuView_android_itemTextAppearance
:
Int
static
val
MenuView_android_verticalDivider
:
Int
static
val
MenuView_android_windowAnimationStyle
:
Int
static
val
MenuView_preserveIconSpacing
:
Int
static
val
MenuView_subMenuArrow
:
Int
static
val
NavigationView
:
IntArray
static
val
NavigationView_android_background
:
Int
static
val
NavigationView_android_fitsSystemWindows
:
Int
static
val
NavigationView_android_maxWidth
:
Int
static
val
NavigationView_elevation
:
Int
static
val
NavigationView_headerLayout
:
Int
static
val
NavigationView_itemBackground
:
Int
static
val
NavigationView_itemHorizontalPadding
:
Int
static
val
NavigationView_itemIconPadding
:
Int
static
val
NavigationView_itemIconTint
:
Int
static
val
NavigationView_itemTextAppearance
:
Int
static
val
NavigationView_itemTextColor
:
Int
static
val
NavigationView_menu
:
Int
static
val
PopupWindow
:
IntArray
static
val
PopupWindowBackgroundState
:
IntArray
static
val
PopupWindowBackgroundState_state_above_anchor
:
Int
static
val
PopupWindow_android_popupAnimationStyle
:
Int
static
val
PopupWindow_android_popupBackground
:
Int
static
val
PopupWindow_overlapAnchor
:
Int
static
val
RecycleListView
:
IntArray
static
val
RecycleListView_paddingBottomNoButtons
:
Int
static
val
RecycleListView_paddingTopNoTitle
:
Int
static
val
RecyclerView
:
IntArray
static
val
RecyclerView_android_descendantFocusability
:
Int
static
val
RecyclerView_android_orientation
:
Int
static
val
RecyclerView_fastScrollEnabled
:
Int
static
val
RecyclerView_fastScrollHorizontalThumbDrawable
:
Int
static
val
RecyclerView_fastScrollHorizontalTrackDrawable
:
Int
static
val
RecyclerView_fastScrollVerticalThumbDrawable
:
Int
static
val
RecyclerView_fastScrollVerticalTrackDrawable
:
Int
static
val
RecyclerView_layoutManager
:
Int
static
val
RecyclerView_reverseLayout
:
Int
static
val
RecyclerView_spanCount
:
Int
static
val
RecyclerView_stackFromEnd
:
Int
static
val
ScrimInsetsFrameLayout
:
IntArray
static
val
ScrimInsetsFrameLayout_insetForeground
:
Int
static
val
ScrollingViewBehavior_Layout
:
IntArray
static
val
ScrollingViewBehavior_Layout_behavior_overlapTop
:
Int
static
val
SearchView
:
IntArray
static
val
SearchView_android_focusable
:
Int
static
val
SearchView_android_imeOptions
:
Int
static
val
SearchView_android_inputType
:
Int
static
val
SearchView_android_maxWidth
:
Int
static
val
SearchView_closeIcon
:
Int
static
val
SearchView_commitIcon
:
Int
static
val
SearchView_defaultQueryHint
:
Int
static
val
SearchView_goIcon
:
Int
static
val
SearchView_iconifiedByDefault
:
Int
static
val
SearchView_layout
:
Int
static
val
SearchView_queryBackground
:
Int
static
val
SearchView_queryHint
:
Int
static
val
SearchView_searchHintIcon
:
Int
static
val
SearchView_searchIcon
:
Int
static
val
SearchView_submitBackground
:
Int
static
val
SearchView_suggestionRowLayout
:
Int
static
val
SearchView_voiceIcon
:
Int
static
val
Snackbar
:
IntArray
static
val
SnackbarLayout
:
IntArray
static
val
SnackbarLayout_android_maxWidth
:
Int
static
val
SnackbarLayout_elevation
:
Int
static
val
SnackbarLayout_maxActionInlineWidth
:
Int
static
val
Snackbar_snackbarButtonStyle
:
Int
static
val
Snackbar_snackbarStyle
:
Int
static
val
Spinner
:
IntArray
static
val
Spinner_android_dropDownWidth
:
Int
static
val
Spinner_android_entries
:
Int
static
val
Spinner_android_popupBackground
:
Int
static
val
Spinner_android_prompt
:
Int
static
val
Spinner_popupTheme
:
Int
static
val
SwitchCompat
:
IntArray
static
val
SwitchCompat_android_textOff
:
Int
static
val
SwitchCompat_android_textOn
:
Int
static
val
SwitchCompat_android_thumb
:
Int
static
val
SwitchCompat_showText
:
Int
static
val
SwitchCompat_splitTrack
:
Int
static
val
SwitchCompat_switchMinWidth
:
Int
static
val
SwitchCompat_switchPadding
:
Int
static
val
SwitchCompat_switchTextAppearance
:
Int
static
val
SwitchCompat_thumbTextPadding
:
Int
static
val
SwitchCompat_thumbTint
:
Int
static
val
SwitchCompat_thumbTintMode
:
Int
static
val
SwitchCompat_track
:
Int
static
val
SwitchCompat_trackTint
:
Int
static
val
SwitchCompat_trackTintMode
:
Int
static
val
TabItem
:
IntArray
static
val
TabItem_android_icon
:
Int
static
val
TabItem_android_layout
:
Int
static
val
TabItem_android_text
:
Int
static
val
TabLayout
:
IntArray
static
val
TabLayout_tabBackground
:
Int
static
val
TabLayout_tabContentStart
:
Int
static
val
TabLayout_tabGravity
:
Int
static
val
TabLayout_tabIconTint
:
Int
static
val
TabLayout_tabIconTintMode
:
Int
static
val
TabLayout_tabIndicator
:
Int
static
val
TabLayout_tabIndicatorAnimationDuration
:
Int
static
val
TabLayout_tabIndicatorColor
:
Int
static
val
TabLayout_tabIndicatorFullWidth
:
Int
static
val
TabLayout_tabIndicatorGravity
:
Int
static
val
TabLayout_tabIndicatorHeight
:
Int
static
val
TabLayout_tabInlineLabel
:
Int
static
val
TabLayout_tabMaxWidth
:
Int
static
val
TabLayout_tabMinWidth
:
Int
static
val
TabLayout_tabMode
:
Int
static
val
TabLayout_tabPadding
:
Int
static
val
TabLayout_tabPaddingBottom
:
Int
static
val
TabLayout_tabPaddingEnd
:
Int
static
val
TabLayout_tabPaddingStart
:
Int
static
val
TabLayout_tabPaddingTop
:
Int
static
val
TabLayout_tabRippleColor
:
Int
static
val
TabLayout_tabSelectedTextColor
:
Int
static
val
TabLayout_tabTextAppearance
:
Int
static
val
TabLayout_tabTextColor
:
Int
static
val
TabLayout_tabUnboundedRipple
:
Int
static
val
TextAppearance
:
IntArray
static
val
TextAppearance_android_fontFamily
:
Int
static
val
TextAppearance_android_shadowColor
:
Int
static
val
TextAppearance_android_shadowDx
:
Int
static
val
TextAppearance_android_shadowDy
:
Int
static
val
TextAppearance_android_shadowRadius
:
Int
static
val
TextAppearance_android_textColor
:
Int
static
val
TextAppearance_android_textColorHint
:
Int
static
val
TextAppearance_android_textColorLink
:
Int
static
val
TextAppearance_android_textSize
:
Int
static
val
TextAppearance_android_textStyle
:
Int
static
val
TextAppearance_android_typeface
:
Int
static
val
TextAppearance_fontFamily
:
Int
static
val
TextAppearance_textAllCaps
:
Int
static
val
TextInputLayout
:
IntArray
static
val
TextInputLayout_android_hint
:
Int
static
val
TextInputLayout_android_textColorHint
:
Int
static
val
TextInputLayout_boxBackgroundColor
:
Int
static
val
TextInputLayout_boxBackgroundMode
:
Int
static
val
TextInputLayout_boxCollapsedPaddingTop
:
Int
static
val
TextInputLayout_boxCornerRadiusBottomEnd
:
Int
static
val
TextInputLayout_boxCornerRadiusBottomStart
:
Int
static
val
TextInputLayout_boxCornerRadiusTopEnd
:
Int
static
val
TextInputLayout_boxCornerRadiusTopStart
:
Int
static
val
TextInputLayout_boxStrokeColor
:
Int
static
val
TextInputLayout_boxStrokeWidth
:
Int
static
val
TextInputLayout_counterEnabled
:
Int
static
val
TextInputLayout_counterMaxLength
:
Int
static
val
TextInputLayout_counterOverflowTextAppearance
:
Int
static
val
TextInputLayout_counterTextAppearance
:
Int
static
val
TextInputLayout_errorEnabled
:
Int
static
val
TextInputLayout_errorTextAppearance
:
Int
static
val
TextInputLayout_helperText
:
Int
static
val
TextInputLayout_helperTextEnabled
:
Int
static
val
TextInputLayout_helperTextTextAppearance
:
Int
static
val
TextInputLayout_hintAnimationEnabled
:
Int
static
val
TextInputLayout_hintEnabled
:
Int
static
val
TextInputLayout_hintTextAppearance
:
Int
static
val
TextInputLayout_passwordToggleContentDescription
:
Int
static
val
TextInputLayout_passwordToggleDrawable
:
Int
static
val
TextInputLayout_passwordToggleEnabled
:
Int
static
val
TextInputLayout_passwordToggleTint
:
Int
static
val
TextInputLayout_passwordToggleTintMode
:
Int
static
val
ThemeEnforcement
:
IntArray
static
val
ThemeEnforcement_android_textAppearance
:
Int
static
val
ThemeEnforcement_enforceMaterialTheme
:
Int
static
val
ThemeEnforcement_enforceTextAppearance
:
Int
static
val
Toolbar
:
IntArray
static
val
Toolbar_android_gravity
:
Int
static
val
Toolbar_android_minHeight
:
Int
static
val
Toolbar_buttonGravity
:
Int
static
val
Toolbar_collapseContentDescription
:
Int
static
val
Toolbar_collapseIcon
:
Int
static
val
Toolbar_contentInsetEnd
:
Int
static
val
Toolbar_contentInsetEndWithActions
:
Int
static
val
Toolbar_contentInsetLeft
:
Int
static
val
Toolbar_contentInsetRight
:
Int
static
val
Toolbar_contentInsetStart
:
Int
static
val
Toolbar_contentInsetStartWithNavigation
:
Int
static
val
Toolbar_logo
:
Int
static
val
Toolbar_logoDescription
:
Int
static
val
Toolbar_maxButtonHeight
:
Int
static
val
Toolbar_navigationContentDescription
:
Int
static
val
Toolbar_navigationIcon
:
Int
static
val
Toolbar_popupTheme
:
Int
static
val
Toolbar_subtitle
:
Int
static
val
Toolbar_subtitleTextAppearance
:
Int
static
val
Toolbar_subtitleTextColor
:
Int
static
val
Toolbar_title
:
Int
static
val
Toolbar_titleMargin
:
Int
static
val
Toolbar_titleMarginBottom
:
Int
static
val
Toolbar_titleMarginEnd
:
Int
static
val
Toolbar_titleMarginStart
:
Int
static
val
Toolbar_titleMarginTop
:
Int
static
val
Toolbar_titleMargins
:
Int
static
val
Toolbar_titleTextAppearance
:
Int
static
val
Toolbar_titleTextColor
:
Int
static
val
View
:
IntArray
static
val
ViewBackgroundHelper
:
IntArray
static
val
ViewBackgroundHelper_android_background
:
Int
static
val
ViewBackgroundHelper_backgroundTint
:
Int
static
val
ViewBackgroundHelper_backgroundTintMode
:
Int
static
val
ViewStubCompat
:
IntArray
static
val
ViewStubCompat_android_id
:
Int
static
val
ViewStubCompat_android_inflatedId
:
Int
static
val
ViewStubCompat_android_layout
:
Int
static
val
View_android_focusable
:
Int
static
val
View_android_theme
:
Int
static
val
View_paddingEnd
:
Int
static
val
View_paddingStart
:
Int
static
val
View_theme
:
Int
class
R
class
R
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
class
R
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
coordinatorLayoutStyle
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
keylines
:
Int
static
val
layout_anchor
:
Int
static
val
layout_anchorGravity
:
Int
static
val
layout_behavior
:
Int
static
val
layout_dodgeInsetEdges
:
Int
static
val
layout_insetEdge
:
Int
static
val
layout_keyline
:
Int
static
val
statusBarBackground
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
bottom
:
Int
static
val
chronometer
:
Int
static
val
end
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
left
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
none
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
start
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
static
val
top
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
static
val
Widget_Support_CoordinatorLayout
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
CoordinatorLayout
:
IntArray
static
val
CoordinatorLayout_Layout
:
IntArray
static
val
CoordinatorLayout_Layout_android_layout_gravity
:
Int
static
val
CoordinatorLayout_Layout_layout_anchor
:
Int
static
val
CoordinatorLayout_Layout_layout_anchorGravity
:
Int
static
val
CoordinatorLayout_Layout_layout_behavior
:
Int
static
val
CoordinatorLayout_Layout_layout_dodgeInsetEdges
:
Int
static
val
CoordinatorLayout_Layout_layout_insetEdge
:
Int
static
val
CoordinatorLayout_Layout_layout_keyline
:
Int
static
val
CoordinatorLayout_keylines
:
Int
static
val
CoordinatorLayout_statusBarBackground
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
coordinatorLayoutStyle
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
keylines
:
Int
static
val
layout_anchor
:
Int
static
val
layout_anchorGravity
:
Int
static
val
layout_behavior
:
Int
static
val
layout_dodgeInsetEdges
:
Int
static
val
layout_insetEdge
:
Int
static
val
layout_keyline
:
Int
static
val
statusBarBackground
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
bottom
:
Int
static
val
chronometer
:
Int
static
val
end
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
left
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
none
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
start
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
static
val
top
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
static
val
Widget_Support_CoordinatorLayout
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
CoordinatorLayout
:
IntArray
static
val
CoordinatorLayout_Layout
:
IntArray
static
val
CoordinatorLayout_Layout_android_layout_gravity
:
Int
static
val
CoordinatorLayout_Layout_layout_anchor
:
Int
static
val
CoordinatorLayout_Layout_layout_anchorGravity
:
Int
static
val
CoordinatorLayout_Layout_layout_behavior
:
Int
static
val
CoordinatorLayout_Layout_layout_dodgeInsetEdges
:
Int
static
val
CoordinatorLayout_Layout_layout_insetEdge
:
Int
static
val
CoordinatorLayout_Layout_layout_keyline
:
Int
static
val
CoordinatorLayout_keylines
:
Int
static
val
CoordinatorLayout_statusBarBackground
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
coordinatorLayoutStyle
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
keylines
:
Int
static
val
layout_anchor
:
Int
static
val
layout_anchorGravity
:
Int
static
val
layout_behavior
:
Int
static
val
layout_dodgeInsetEdges
:
Int
static
val
layout_insetEdge
:
Int
static
val
layout_keyline
:
Int
static
val
statusBarBackground
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
bottom
:
Int
static
val
chronometer
:
Int
static
val
end
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
left
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
none
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
start
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
static
val
top
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
static
val
Widget_Support_CoordinatorLayout
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
CoordinatorLayout
:
IntArray
static
val
CoordinatorLayout_Layout
:
IntArray
static
val
CoordinatorLayout_Layout_android_layout_gravity
:
Int
static
val
CoordinatorLayout_Layout_layout_anchor
:
Int
static
val
CoordinatorLayout_Layout_layout_anchorGravity
:
Int
static
val
CoordinatorLayout_Layout_layout_behavior
:
Int
static
val
CoordinatorLayout_Layout_layout_dodgeInsetEdges
:
Int
static
val
CoordinatorLayout_Layout_layout_insetEdge
:
Int
static
val
CoordinatorLayout_Layout_layout_keyline
:
Int
static
val
CoordinatorLayout_keylines
:
Int
static
val
CoordinatorLayout_statusBarBackground
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
coordinatorLayoutStyle
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
keylines
:
Int
static
val
layout_anchor
:
Int
static
val
layout_anchorGravity
:
Int
static
val
layout_behavior
:
Int
static
val
layout_dodgeInsetEdges
:
Int
static
val
layout_insetEdge
:
Int
static
val
layout_keyline
:
Int
static
val
statusBarBackground
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
bottom
:
Int
static
val
chronometer
:
Int
static
val
end
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
left
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
none
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
start
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
static
val
top
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
static
val
Widget_Support_CoordinatorLayout
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
CoordinatorLayout
:
IntArray
static
val
CoordinatorLayout_Layout
:
IntArray
static
val
CoordinatorLayout_Layout_android_layout_gravity
:
Int
static
val
CoordinatorLayout_Layout_layout_anchor
:
Int
static
val
CoordinatorLayout_Layout_layout_anchorGravity
:
Int
static
val
CoordinatorLayout_Layout_layout_behavior
:
Int
static
val
CoordinatorLayout_Layout_layout_dodgeInsetEdges
:
Int
static
val
CoordinatorLayout_Layout_layout_insetEdge
:
Int
static
val
CoordinatorLayout_Layout_layout_keyline
:
Int
static
val
CoordinatorLayout_keylines
:
Int
static
val
CoordinatorLayout_statusBarBackground
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
class
R
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
class
R
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
notification_material_background_media_default_color
:
Int
static
val
primary_text_default_material_dark
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_dark
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
static
val
subtitle_corner_radius
:
Int
static
val
subtitle_outline_width
:
Int
static
val
subtitle_shadow_offset
:
Int
static
val
subtitle_shadow_radius
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action0
:
Int
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
cancel_action
:
Int
static
val
chronometer
:
Int
static
val
end_padder
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
media_actions
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
status_bar_latest_event_content
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
cancel_button_image_alpha
:
Int
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_media_action
:
Int
static
val
notification_media_cancel_action
:
Int
static
val
notification_template_big_media
:
Int
static
val
notification_template_big_media_custom
:
Int
static
val
notification_template_big_media_narrow
:
Int
static
val
notification_template_big_media_narrow_custom
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_lines_media
:
Int
static
val
notification_template_media
:
Int
static
val
notification_template_media_custom
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Info_Media
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Line2_Media
:
Int
static
val
TextAppearance_Compat_Notification_Media
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Time_Media
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
TextAppearance_Compat_Notification_Title_Media
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
notification_material_background_media_default_color
:
Int
static
val
primary_text_default_material_dark
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_dark
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
static
val
subtitle_corner_radius
:
Int
static
val
subtitle_outline_width
:
Int
static
val
subtitle_shadow_offset
:
Int
static
val
subtitle_shadow_radius
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action0
:
Int
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
cancel_action
:
Int
static
val
chronometer
:
Int
static
val
end_padder
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
media_actions
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
status_bar_latest_event_content
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
cancel_button_image_alpha
:
Int
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_media_action
:
Int
static
val
notification_media_cancel_action
:
Int
static
val
notification_template_big_media
:
Int
static
val
notification_template_big_media_custom
:
Int
static
val
notification_template_big_media_narrow
:
Int
static
val
notification_template_big_media_narrow_custom
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_lines_media
:
Int
static
val
notification_template_media
:
Int
static
val
notification_template_media_custom
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Info_Media
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Line2_Media
:
Int
static
val
TextAppearance_Compat_Notification_Media
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Time_Media
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
TextAppearance_Compat_Notification_Title_Media
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
class
R
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
ghost_view
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
parent_matrix
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
save_image_matrix
:
Int
static
val
save_non_transition_alpha
:
Int
static
val
save_scale_type
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
static
val
transition_current_scene
:
Int
static
val
transition_layout_save
:
Int
static
val
transition_position
:
Int
static
val
transition_scene_layoutid_cache
:
Int
static
val
transition_transform
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
ghost_view
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
parent_matrix
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
save_image_matrix
:
Int
static
val
save_non_transition_alpha
:
Int
static
val
save_scale_type
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
static
val
transition_current_scene
:
Int
static
val
transition_layout_save
:
Int
static
val
transition_position
:
Int
static
val
transition_scene_layoutid_cache
:
Int
static
val
transition_transform
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
coordinatorLayoutStyle
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
keylines
:
Int
static
val
layout_anchor
:
Int
static
val
layout_anchorGravity
:
Int
static
val
layout_behavior
:
Int
static
val
layout_dodgeInsetEdges
:
Int
static
val
layout_insetEdge
:
Int
static
val
layout_keyline
:
Int
static
val
statusBarBackground
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
notification_material_background_media_default_color
:
Int
static
val
primary_text_default_material_dark
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_dark
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
static
val
subtitle_corner_radius
:
Int
static
val
subtitle_outline_width
:
Int
static
val
subtitle_shadow_offset
:
Int
static
val
subtitle_shadow_radius
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action0
:
Int
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
bottom
:
Int
static
val
cancel_action
:
Int
static
val
chronometer
:
Int
static
val
end
:
Int
static
val
end_padder
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
left
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
media_actions
:
Int
static
val
none
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
start
:
Int
static
val
status_bar_latest_event_content
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
static
val
top
:
Int
class
integer
Module Contents
static
val
cancel_button_image_alpha
:
Int
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_media_action
:
Int
static
val
notification_media_cancel_action
:
Int
static
val
notification_template_big_media
:
Int
static
val
notification_template_big_media_custom
:
Int
static
val
notification_template_big_media_narrow
:
Int
static
val
notification_template_big_media_narrow_custom
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_lines_media
:
Int
static
val
notification_template_media
:
Int
static
val
notification_template_media_custom
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Info_Media
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Line2_Media
:
Int
static
val
TextAppearance_Compat_Notification_Media
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Time_Media
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
TextAppearance_Compat_Notification_Title_Media
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
static
val
Widget_Support_CoordinatorLayout
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
CoordinatorLayout
:
IntArray
static
val
CoordinatorLayout_Layout
:
IntArray
static
val
CoordinatorLayout_Layout_android_layout_gravity
:
Int
static
val
CoordinatorLayout_Layout_layout_anchor
:
Int
static
val
CoordinatorLayout_Layout_layout_anchorGravity
:
Int
static
val
CoordinatorLayout_Layout_layout_behavior
:
Int
static
val
CoordinatorLayout_Layout_layout_dodgeInsetEdges
:
Int
static
val
CoordinatorLayout_Layout_layout_insetEdge
:
Int
static
val
CoordinatorLayout_Layout_layout_keyline
:
Int
static
val
CoordinatorLayout_keylines
:
Int
static
val
CoordinatorLayout_statusBarBackground
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
coordinatorLayoutStyle
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
keylines
:
Int
static
val
layout_anchor
:
Int
static
val
layout_anchorGravity
:
Int
static
val
layout_behavior
:
Int
static
val
layout_dodgeInsetEdges
:
Int
static
val
layout_insetEdge
:
Int
static
val
layout_keyline
:
Int
static
val
statusBarBackground
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
notification_material_background_media_default_color
:
Int
static
val
primary_text_default_material_dark
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_dark
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
static
val
subtitle_corner_radius
:
Int
static
val
subtitle_outline_width
:
Int
static
val
subtitle_shadow_offset
:
Int
static
val
subtitle_shadow_radius
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action0
:
Int
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
bottom
:
Int
static
val
cancel_action
:
Int
static
val
chronometer
:
Int
static
val
end
:
Int
static
val
end_padder
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
left
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
media_actions
:
Int
static
val
none
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
start
:
Int
static
val
status_bar_latest_event_content
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
static
val
top
:
Int
class
integer
Module Contents
static
val
cancel_button_image_alpha
:
Int
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_media_action
:
Int
static
val
notification_media_cancel_action
:
Int
static
val
notification_template_big_media
:
Int
static
val
notification_template_big_media_custom
:
Int
static
val
notification_template_big_media_narrow
:
Int
static
val
notification_template_big_media_narrow_custom
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_lines_media
:
Int
static
val
notification_template_media
:
Int
static
val
notification_template_media_custom
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Info_Media
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Line2_Media
:
Int
static
val
TextAppearance_Compat_Notification_Media
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Time_Media
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
TextAppearance_Compat_Notification_Title_Media
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
static
val
Widget_Support_CoordinatorLayout
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
CoordinatorLayout
:
IntArray
static
val
CoordinatorLayout_Layout
:
IntArray
static
val
CoordinatorLayout_Layout_android_layout_gravity
:
Int
static
val
CoordinatorLayout_Layout_layout_anchor
:
Int
static
val
CoordinatorLayout_Layout_layout_anchorGravity
:
Int
static
val
CoordinatorLayout_Layout_layout_behavior
:
Int
static
val
CoordinatorLayout_Layout_layout_dodgeInsetEdges
:
Int
static
val
CoordinatorLayout_Layout_layout_insetEdge
:
Int
static
val
CoordinatorLayout_Layout_layout_keyline
:
Int
static
val
CoordinatorLayout_keylines
:
Int
static
val
CoordinatorLayout_statusBarBackground
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
anim
Module Contents
static
val
abc_fade_in
:
Int
static
val
abc_fade_out
:
Int
static
val
abc_grow_fade_in_from_bottom
:
Int
static
val
abc_popup_enter
:
Int
static
val
abc_popup_exit
:
Int
static
val
abc_shrink_fade_out_from_bottom
:
Int
static
val
abc_slide_in_bottom
:
Int
static
val
abc_slide_in_top
:
Int
static
val
abc_slide_out_bottom
:
Int
static
val
abc_slide_out_top
:
Int
static
val
abc_tooltip_enter
:
Int
static
val
abc_tooltip_exit
:
Int
class
attr
Module Contents
static
val
actionBarDivider
:
Int
static
val
actionBarItemBackground
:
Int
static
val
actionBarPopupTheme
:
Int
static
val
actionBarSize
:
Int
static
val
actionBarSplitStyle
:
Int
static
val
actionBarStyle
:
Int
static
val
actionBarTabBarStyle
:
Int
static
val
actionBarTabStyle
:
Int
static
val
actionBarTabTextStyle
:
Int
static
val
actionBarTheme
:
Int
static
val
actionBarWidgetTheme
:
Int
static
val
actionButtonStyle
:
Int
static
val
actionDropDownStyle
:
Int
static
val
actionLayout
:
Int
static
val
actionMenuTextAppearance
:
Int
static
val
actionMenuTextColor
:
Int
static
val
actionModeBackground
:
Int
static
val
actionModeCloseButtonStyle
:
Int
static
val
actionModeCloseDrawable
:
Int
static
val
actionModeCopyDrawable
:
Int
static
val
actionModeCutDrawable
:
Int
static
val
actionModeFindDrawable
:
Int
static
val
actionModePasteDrawable
:
Int
static
val
actionModePopupWindowStyle
:
Int
static
val
actionModeSelectAllDrawable
:
Int
static
val
actionModeShareDrawable
:
Int
static
val
actionModeSplitBackground
:
Int
static
val
actionModeStyle
:
Int
static
val
actionModeWebSearchDrawable
:
Int
static
val
actionOverflowButtonStyle
:
Int
static
val
actionOverflowMenuStyle
:
Int
static
val
actionProviderClass
:
Int
static
val
actionViewClass
:
Int
static
val
activityChooserViewStyle
:
Int
static
val
alertDialogButtonGroupStyle
:
Int
static
val
alertDialogCenterButtons
:
Int
static
val
alertDialogStyle
:
Int
static
val
alertDialogTheme
:
Int
static
val
allowStacking
:
Int
static
val
alpha
:
Int
static
val
alphabeticModifiers
:
Int
static
val
arrowHeadLength
:
Int
static
val
arrowShaftLength
:
Int
static
val
autoCompleteTextViewStyle
:
Int
static
val
autoSizeMaxTextSize
:
Int
static
val
autoSizeMinTextSize
:
Int
static
val
autoSizePresetSizes
:
Int
static
val
autoSizeStepGranularity
:
Int
static
val
autoSizeTextType
:
Int
static
val
background
:
Int
static
val
backgroundSplit
:
Int
static
val
backgroundStacked
:
Int
static
val
backgroundTint
:
Int
static
val
backgroundTintMode
:
Int
static
val
barLength
:
Int
static
val
borderlessButtonStyle
:
Int
static
val
buttonBarButtonStyle
:
Int
static
val
buttonBarNegativeButtonStyle
:
Int
static
val
buttonBarNeutralButtonStyle
:
Int
static
val
buttonBarPositiveButtonStyle
:
Int
static
val
buttonBarStyle
:
Int
static
val
buttonGravity
:
Int
static
val
buttonIconDimen
:
Int
static
val
buttonPanelSideLayout
:
Int
static
val
buttonStyle
:
Int
static
val
buttonStyleSmall
:
Int
static
val
buttonTint
:
Int
static
val
buttonTintMode
:
Int
static
val
checkboxStyle
:
Int
static
val
checkedTextViewStyle
:
Int
static
val
closeIcon
:
Int
static
val
closeItemLayout
:
Int
static
val
collapseContentDescription
:
Int
static
val
collapseIcon
:
Int
static
val
color
:
Int
static
val
colorAccent
:
Int
static
val
colorBackgroundFloating
:
Int
static
val
colorButtonNormal
:
Int
static
val
colorControlActivated
:
Int
static
val
colorControlHighlight
:
Int
static
val
colorControlNormal
:
Int
static
val
colorError
:
Int
static
val
colorPrimary
:
Int
static
val
colorPrimaryDark
:
Int
static
val
colorSwitchThumbNormal
:
Int
static
val
commitIcon
:
Int
static
val
contentDescription
:
Int
static
val
contentInsetEnd
:
Int
static
val
contentInsetEndWithActions
:
Int
static
val
contentInsetLeft
:
Int
static
val
contentInsetRight
:
Int
static
val
contentInsetStart
:
Int
static
val
contentInsetStartWithNavigation
:
Int
static
val
controlBackground
:
Int
static
val
coordinatorLayoutStyle
:
Int
static
val
customNavigationLayout
:
Int
static
val
defaultQueryHint
:
Int
static
val
dialogCornerRadius
:
Int
static
val
dialogPreferredPadding
:
Int
static
val
dialogTheme
:
Int
static
val
displayOptions
:
Int
static
val
divider
:
Int
static
val
dividerHorizontal
:
Int
static
val
dividerPadding
:
Int
static
val
dividerVertical
:
Int
static
val
drawableSize
:
Int
static
val
drawerArrowStyle
:
Int
static
val
dropDownListViewStyle
:
Int
static
val
dropdownListPreferredItemHeight
:
Int
static
val
editTextBackground
:
Int
static
val
editTextColor
:
Int
static
val
editTextStyle
:
Int
static
val
elevation
:
Int
static
val
expandActivityOverflowButtonDrawable
:
Int
static
val
firstBaselineToTopHeight
:
Int
static
val
font
:
Int
static
val
fontFamily
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
gapBetweenBars
:
Int
static
val
goIcon
:
Int
static
val
height
:
Int
static
val
hideOnContentScroll
:
Int
static
val
homeAsUpIndicator
:
Int
static
val
homeLayout
:
Int
static
val
icon
:
Int
static
val
iconTint
:
Int
static
val
iconTintMode
:
Int
static
val
iconifiedByDefault
:
Int
static
val
imageButtonStyle
:
Int
static
val
indeterminateProgressStyle
:
Int
static
val
initialActivityCount
:
Int
static
val
isLightTheme
:
Int
static
val
itemPadding
:
Int
static
val
keylines
:
Int
static
val
lastBaselineToBottomHeight
:
Int
static
val
layout
:
Int
static
val
layout_anchor
:
Int
static
val
layout_anchorGravity
:
Int
static
val
layout_behavior
:
Int
static
val
layout_dodgeInsetEdges
:
Int
static
val
layout_insetEdge
:
Int
static
val
layout_keyline
:
Int
static
val
lineHeight
:
Int
static
val
listChoiceBackgroundIndicator
:
Int
static
val
listDividerAlertDialog
:
Int
static
val
listItemLayout
:
Int
static
val
listLayout
:
Int
static
val
listMenuViewStyle
:
Int
static
val
listPopupWindowStyle
:
Int
static
val
listPreferredItemHeight
:
Int
static
val
listPreferredItemHeightLarge
:
Int
static
val
listPreferredItemHeightSmall
:
Int
static
val
listPreferredItemPaddingLeft
:
Int
static
val
listPreferredItemPaddingRight
:
Int
static
val
logo
:
Int
static
val
logoDescription
:
Int
static
val
maxButtonHeight
:
Int
static
val
measureWithLargestChild
:
Int
static
val
multiChoiceItemLayout
:
Int
static
val
navigationContentDescription
:
Int
static
val
navigationIcon
:
Int
static
val
navigationMode
:
Int
static
val
numericModifiers
:
Int
static
val
overlapAnchor
:
Int
static
val
paddingBottomNoButtons
:
Int
static
val
paddingEnd
:
Int
static
val
paddingStart
:
Int
static
val
paddingTopNoTitle
:
Int
static
val
panelBackground
:
Int
static
val
panelMenuListTheme
:
Int
static
val
panelMenuListWidth
:
Int
static
val
popupMenuStyle
:
Int
static
val
popupTheme
:
Int
static
val
popupWindowStyle
:
Int
static
val
preserveIconSpacing
:
Int
static
val
progressBarPadding
:
Int
static
val
progressBarStyle
:
Int
static
val
queryBackground
:
Int
static
val
queryHint
:
Int
static
val
radioButtonStyle
:
Int
static
val
ratingBarStyle
:
Int
static
val
ratingBarStyleIndicator
:
Int
static
val
ratingBarStyleSmall
:
Int
static
val
searchHintIcon
:
Int
static
val
searchIcon
:
Int
static
val
searchViewStyle
:
Int
static
val
seekBarStyle
:
Int
static
val
selectableItemBackground
:
Int
static
val
selectableItemBackgroundBorderless
:
Int
static
val
showAsAction
:
Int
static
val
showDividers
:
Int
static
val
showText
:
Int
static
val
showTitle
:
Int
static
val
singleChoiceItemLayout
:
Int
static
val
spinBars
:
Int
static
val
spinnerDropDownItemStyle
:
Int
static
val
spinnerStyle
:
Int
static
val
splitTrack
:
Int
static
val
srcCompat
:
Int
static
val
state_above_anchor
:
Int
static
val
statusBarBackground
:
Int
static
val
subMenuArrow
:
Int
static
val
submitBackground
:
Int
static
val
subtitle
:
Int
static
val
subtitleTextAppearance
:
Int
static
val
subtitleTextColor
:
Int
static
val
subtitleTextStyle
:
Int
static
val
suggestionRowLayout
:
Int
static
val
switchMinWidth
:
Int
static
val
switchPadding
:
Int
static
val
switchStyle
:
Int
static
val
switchTextAppearance
:
Int
static
val
textAllCaps
:
Int
static
val
textAppearanceLargePopupMenu
:
Int
static
val
textAppearanceListItem
:
Int
static
val
textAppearanceListItemSecondary
:
Int
static
val
textAppearanceListItemSmall
:
Int
static
val
textAppearancePopupMenuHeader
:
Int
static
val
textAppearanceSearchResultSubtitle
:
Int
static
val
textAppearanceSearchResultTitle
:
Int
static
val
textAppearanceSmallPopupMenu
:
Int
static
val
textColorAlertDialogListItem
:
Int
static
val
textColorSearchUrl
:
Int
static
val
theme
:
Int
static
val
thickness
:
Int
static
val
thumbTextPadding
:
Int
static
val
thumbTint
:
Int
static
val
thumbTintMode
:
Int
static
val
tickMark
:
Int
static
val
tickMarkTint
:
Int
static
val
tickMarkTintMode
:
Int
static
val
tint
:
Int
static
val
tintMode
:
Int
static
val
title
:
Int
static
val
titleMargin
:
Int
static
val
titleMarginBottom
:
Int
static
val
titleMarginEnd
:
Int
static
val
titleMarginStart
:
Int
static
val
titleMarginTop
:
Int
static
val
titleMargins
:
Int
static
val
titleTextAppearance
:
Int
static
val
titleTextColor
:
Int
static
val
titleTextStyle
:
Int
static
val
toolbarNavigationButtonStyle
:
Int
static
val
toolbarStyle
:
Int
static
val
tooltipForegroundColor
:
Int
static
val
tooltipFrameBackground
:
Int
static
val
tooltipText
:
Int
static
val
track
:
Int
static
val
trackTint
:
Int
static
val
trackTintMode
:
Int
static
val
ttcIndex
:
Int
static
val
viewInflaterClass
:
Int
static
val
voiceIcon
:
Int
static
val
windowActionBar
:
Int
static
val
windowActionBarOverlay
:
Int
static
val
windowActionModeOverlay
:
Int
static
val
windowFixedHeightMajor
:
Int
static
val
windowFixedHeightMinor
:
Int
static
val
windowFixedWidthMajor
:
Int
static
val
windowFixedWidthMinor
:
Int
static
val
windowMinWidthMajor
:
Int
static
val
windowMinWidthMinor
:
Int
static
val
windowNoTitle
:
Int
class
bool
Module Contents
static
val
abc_action_bar_embed_tabs
:
Int
static
val
abc_allow_stacked_button_bar
:
Int
static
val
abc_config_actionMenuItemAllCaps
:
Int
class
color
Module Contents
static
val
abc_background_cache_hint_selector_material_dark
:
Int
static
val
abc_background_cache_hint_selector_material_light
:
Int
static
val
abc_btn_colored_borderless_text_material
:
Int
static
val
abc_btn_colored_text_material
:
Int
static
val
abc_color_highlight_material
:
Int
static
val
abc_hint_foreground_material_dark
:
Int
static
val
abc_hint_foreground_material_light
:
Int
static
val
abc_input_method_navigation_guard
:
Int
static
val
abc_primary_text_disable_only_material_dark
:
Int
static
val
abc_primary_text_disable_only_material_light
:
Int
static
val
abc_primary_text_material_dark
:
Int
static
val
abc_primary_text_material_light
:
Int
static
val
abc_search_url_text
:
Int
static
val
abc_search_url_text_normal
:
Int
static
val
abc_search_url_text_pressed
:
Int
static
val
abc_search_url_text_selected
:
Int
static
val
abc_secondary_text_material_dark
:
Int
static
val
abc_secondary_text_material_light
:
Int
static
val
abc_tint_btn_checkable
:
Int
static
val
abc_tint_default
:
Int
static
val
abc_tint_edittext
:
Int
static
val
abc_tint_seek_thumb
:
Int
static
val
abc_tint_spinner
:
Int
static
val
abc_tint_switch_track
:
Int
static
val
accent_material_dark
:
Int
static
val
accent_material_light
:
Int
static
val
background_floating_material_dark
:
Int
static
val
background_floating_material_light
:
Int
static
val
background_material_dark
:
Int
static
val
background_material_light
:
Int
static
val
bright_foreground_disabled_material_dark
:
Int
static
val
bright_foreground_disabled_material_light
:
Int
static
val
bright_foreground_inverse_material_dark
:
Int
static
val
bright_foreground_inverse_material_light
:
Int
static
val
bright_foreground_material_dark
:
Int
static
val
bright_foreground_material_light
:
Int
static
val
button_material_dark
:
Int
static
val
button_material_light
:
Int
static
val
dim_foreground_disabled_material_dark
:
Int
static
val
dim_foreground_disabled_material_light
:
Int
static
val
dim_foreground_material_dark
:
Int
static
val
dim_foreground_material_light
:
Int
static
val
error_color_material_dark
:
Int
static
val
error_color_material_light
:
Int
static
val
foreground_material_dark
:
Int
static
val
foreground_material_light
:
Int
static
val
highlighted_text_material_dark
:
Int
static
val
highlighted_text_material_light
:
Int
static
val
material_blue_grey_800
:
Int
static
val
material_blue_grey_900
:
Int
static
val
material_blue_grey_950
:
Int
static
val
material_deep_teal_200
:
Int
static
val
material_deep_teal_500
:
Int
static
val
material_grey_100
:
Int
static
val
material_grey_300
:
Int
static
val
material_grey_50
:
Int
static
val
material_grey_600
:
Int
static
val
material_grey_800
:
Int
static
val
material_grey_850
:
Int
static
val
material_grey_900
:
Int
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
primary_dark_material_dark
:
Int
static
val
primary_dark_material_light
:
Int
static
val
primary_material_dark
:
Int
static
val
primary_material_light
:
Int
static
val
primary_text_default_material_dark
:
Int
static
val
primary_text_default_material_light
:
Int
static
val
primary_text_disabled_material_dark
:
Int
static
val
primary_text_disabled_material_light
:
Int
static
val
ripple_material_dark
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_dark
:
Int
static
val
secondary_text_default_material_light
:
Int
static
val
secondary_text_disabled_material_dark
:
Int
static
val
secondary_text_disabled_material_light
:
Int
static
val
switch_thumb_disabled_material_dark
:
Int
static
val
switch_thumb_disabled_material_light
:
Int
static
val
switch_thumb_material_dark
:
Int
static
val
switch_thumb_material_light
:
Int
static
val
switch_thumb_normal_material_dark
:
Int
static
val
switch_thumb_normal_material_light
:
Int
static
val
tooltip_background_dark
:
Int
static
val
tooltip_background_light
:
Int
class
dimen
Module Contents
static
val
abc_action_bar_content_inset_material
:
Int
static
val
abc_action_bar_content_inset_with_nav
:
Int
static
val
abc_action_bar_default_height_material
:
Int
static
val
abc_action_bar_default_padding_end_material
:
Int
static
val
abc_action_bar_default_padding_start_material
:
Int
static
val
abc_action_bar_elevation_material
:
Int
static
val
abc_action_bar_icon_vertical_padding_material
:
Int
static
val
abc_action_bar_overflow_padding_end_material
:
Int
static
val
abc_action_bar_overflow_padding_start_material
:
Int
static
val
abc_action_bar_stacked_max_height
:
Int
static
val
abc_action_bar_stacked_tab_max_width
:
Int
static
val
abc_action_bar_subtitle_bottom_margin_material
:
Int
static
val
abc_action_bar_subtitle_top_margin_material
:
Int
static
val
abc_action_button_min_height_material
:
Int
static
val
abc_action_button_min_width_material
:
Int
static
val
abc_action_button_min_width_overflow_material
:
Int
static
val
abc_alert_dialog_button_bar_height
:
Int
static
val
abc_alert_dialog_button_dimen
:
Int
static
val
abc_button_inset_horizontal_material
:
Int
static
val
abc_button_inset_vertical_material
:
Int
static
val
abc_button_padding_horizontal_material
:
Int
static
val
abc_button_padding_vertical_material
:
Int
static
val
abc_cascading_menus_min_smallest_width
:
Int
static
val
abc_config_prefDialogWidth
:
Int
static
val
abc_control_corner_material
:
Int
static
val
abc_control_inset_material
:
Int
static
val
abc_control_padding_material
:
Int
static
val
abc_dialog_corner_radius_material
:
Int
static
val
abc_dialog_fixed_height_major
:
Int
static
val
abc_dialog_fixed_height_minor
:
Int
static
val
abc_dialog_fixed_width_major
:
Int
static
val
abc_dialog_fixed_width_minor
:
Int
static
val
abc_dialog_list_padding_bottom_no_buttons
:
Int
static
val
abc_dialog_list_padding_top_no_title
:
Int
static
val
abc_dialog_min_width_major
:
Int
static
val
abc_dialog_min_width_minor
:
Int
static
val
abc_dialog_padding_material
:
Int
static
val
abc_dialog_padding_top_material
:
Int
static
val
abc_dialog_title_divider_material
:
Int
static
val
abc_disabled_alpha_material_dark
:
Int
static
val
abc_disabled_alpha_material_light
:
Int
static
val
abc_dropdownitem_icon_width
:
Int
static
val
abc_dropdownitem_text_padding_left
:
Int
static
val
abc_dropdownitem_text_padding_right
:
Int
static
val
abc_edit_text_inset_bottom_material
:
Int
static
val
abc_edit_text_inset_horizontal_material
:
Int
static
val
abc_edit_text_inset_top_material
:
Int
static
val
abc_floating_window_z
:
Int
static
val
abc_list_item_padding_horizontal_material
:
Int
static
val
abc_panel_menu_list_width
:
Int
static
val
abc_progress_bar_height_material
:
Int
static
val
abc_search_view_preferred_height
:
Int
static
val
abc_search_view_preferred_width
:
Int
static
val
abc_seekbar_track_background_height_material
:
Int
static
val
abc_seekbar_track_progress_height_material
:
Int
static
val
abc_select_dialog_padding_start_material
:
Int
static
val
abc_switch_padding
:
Int
static
val
abc_text_size_body_1_material
:
Int
static
val
abc_text_size_body_2_material
:
Int
static
val
abc_text_size_button_material
:
Int
static
val
abc_text_size_caption_material
:
Int
static
val
abc_text_size_display_1_material
:
Int
static
val
abc_text_size_display_2_material
:
Int
static
val
abc_text_size_display_3_material
:
Int
static
val
abc_text_size_display_4_material
:
Int
static
val
abc_text_size_headline_material
:
Int
static
val
abc_text_size_large_material
:
Int
static
val
abc_text_size_medium_material
:
Int
static
val
abc_text_size_menu_header_material
:
Int
static
val
abc_text_size_menu_material
:
Int
static
val
abc_text_size_small_material
:
Int
static
val
abc_text_size_subhead_material
:
Int
static
val
abc_text_size_subtitle_material_toolbar
:
Int
static
val
abc_text_size_title_material
:
Int
static
val
abc_text_size_title_material_toolbar
:
Int
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
disabled_alpha_material_dark
:
Int
static
val
disabled_alpha_material_light
:
Int
static
val
highlight_alpha_material_colored
:
Int
static
val
highlight_alpha_material_dark
:
Int
static
val
highlight_alpha_material_light
:
Int
static
val
hint_alpha_material_dark
:
Int
static
val
hint_alpha_material_light
:
Int
static
val
hint_pressed_alpha_material_dark
:
Int
static
val
hint_pressed_alpha_material_light
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
static
val
tooltip_corner_radius
:
Int
static
val
tooltip_horizontal_padding
:
Int
static
val
tooltip_margin
:
Int
static
val
tooltip_precise_anchor_extra_offset
:
Int
static
val
tooltip_precise_anchor_threshold
:
Int
static
val
tooltip_vertical_padding
:
Int
static
val
tooltip_y_offset_non_touch
:
Int
static
val
tooltip_y_offset_touch
:
Int
class
drawable
Module Contents
static
val
abc_ab_share_pack_mtrl_alpha
:
Int
static
val
abc_action_bar_item_background_material
:
Int
static
val
abc_btn_borderless_material
:
Int
static
val
abc_btn_check_material
:
Int
static
val
abc_btn_check_to_on_mtrl_000
:
Int
static
val
abc_btn_check_to_on_mtrl_015
:
Int
static
val
abc_btn_colored_material
:
Int
static
val
abc_btn_default_mtrl_shape
:
Int
static
val
abc_btn_radio_material
:
Int
static
val
abc_btn_radio_to_on_mtrl_000
:
Int
static
val
abc_btn_radio_to_on_mtrl_015
:
Int
static
val
abc_btn_switch_to_on_mtrl_00001
:
Int
static
val
abc_btn_switch_to_on_mtrl_00012
:
Int
static
val
abc_cab_background_internal_bg
:
Int
static
val
abc_cab_background_top_material
:
Int
static
val
abc_cab_background_top_mtrl_alpha
:
Int
static
val
abc_control_background_material
:
Int
static
val
abc_dialog_material_background
:
Int
static
val
abc_edit_text_material
:
Int
static
val
abc_ic_ab_back_material
:
Int
static
val
abc_ic_arrow_drop_right_black_24dp
:
Int
static
val
abc_ic_clear_material
:
Int
static
val
abc_ic_commit_search_api_mtrl_alpha
:
Int
static
val
abc_ic_go_search_api_material
:
Int
static
val
abc_ic_menu_copy_mtrl_am_alpha
:
Int
static
val
abc_ic_menu_cut_mtrl_alpha
:
Int
static
val
abc_ic_menu_overflow_material
:
Int
static
val
abc_ic_menu_paste_mtrl_am_alpha
:
Int
static
val
abc_ic_menu_selectall_mtrl_alpha
:
Int
static
val
abc_ic_menu_share_mtrl_alpha
:
Int
static
val
abc_ic_search_api_material
:
Int
static
val
abc_ic_star_black_16dp
:
Int
static
val
abc_ic_star_black_36dp
:
Int
static
val
abc_ic_star_black_48dp
:
Int
static
val
abc_ic_star_half_black_16dp
:
Int
static
val
abc_ic_star_half_black_36dp
:
Int
static
val
abc_ic_star_half_black_48dp
:
Int
static
val
abc_ic_voice_search_api_material
:
Int
static
val
abc_item_background_holo_dark
:
Int
static
val
abc_item_background_holo_light
:
Int
static
val
abc_list_divider_material
:
Int
static
val
abc_list_divider_mtrl_alpha
:
Int
static
val
abc_list_focused_holo
:
Int
static
val
abc_list_longpressed_holo
:
Int
static
val
abc_list_pressed_holo_dark
:
Int
static
val
abc_list_pressed_holo_light
:
Int
static
val
abc_list_selector_background_transition_holo_dark
:
Int
static
val
abc_list_selector_background_transition_holo_light
:
Int
static
val
abc_list_selector_disabled_holo_dark
:
Int
static
val
abc_list_selector_disabled_holo_light
:
Int
static
val
abc_list_selector_holo_dark
:
Int
static
val
abc_list_selector_holo_light
:
Int
static
val
abc_menu_hardkey_panel_mtrl_mult
:
Int
static
val
abc_popup_background_mtrl_mult
:
Int
static
val
abc_ratingbar_indicator_material
:
Int
static
val
abc_ratingbar_material
:
Int
static
val
abc_ratingbar_small_material
:
Int
static
val
abc_scrubber_control_off_mtrl_alpha
:
Int
static
val
abc_scrubber_control_to_pressed_mtrl_000
:
Int
static
val
abc_scrubber_control_to_pressed_mtrl_005
:
Int
static
val
abc_scrubber_primary_mtrl_alpha
:
Int
static
val
abc_scrubber_track_mtrl_alpha
:
Int
static
val
abc_seekbar_thumb_material
:
Int
static
val
abc_seekbar_tick_mark_material
:
Int
static
val
abc_seekbar_track_material
:
Int
static
val
abc_spinner_mtrl_am_alpha
:
Int
static
val
abc_spinner_textfield_background_material
:
Int
static
val
abc_switch_thumb_material
:
Int
static
val
abc_switch_track_mtrl_alpha
:
Int
static
val
abc_tab_indicator_material
:
Int
static
val
abc_tab_indicator_mtrl_alpha
:
Int
static
val
abc_text_cursor_material
:
Int
static
val
abc_text_select_handle_left_mtrl_dark
:
Int
static
val
abc_text_select_handle_left_mtrl_light
:
Int
static
val
abc_text_select_handle_middle_mtrl_dark
:
Int
static
val
abc_text_select_handle_middle_mtrl_light
:
Int
static
val
abc_text_select_handle_right_mtrl_dark
:
Int
static
val
abc_text_select_handle_right_mtrl_light
:
Int
static
val
abc_textfield_activated_mtrl_alpha
:
Int
static
val
abc_textfield_default_mtrl_alpha
:
Int
static
val
abc_textfield_search_activated_mtrl_alpha
:
Int
static
val
abc_textfield_search_default_mtrl_alpha
:
Int
static
val
abc_textfield_search_material
:
Int
static
val
abc_vector_test
:
Int
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
static
val
tooltip_frame_dark
:
Int
static
val
tooltip_frame_light
:
Int
class
id
Module Contents
static
val
action_bar
:
Int
static
val
action_bar_activity_content
:
Int
static
val
action_bar_container
:
Int
static
val
action_bar_root
:
Int
static
val
action_bar_spinner
:
Int
static
val
action_bar_subtitle
:
Int
static
val
action_bar_title
:
Int
static
val
action_container
:
Int
static
val
action_context_bar
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_menu_divider
:
Int
static
val
action_menu_presenter
:
Int
static
val
action_mode_bar
:
Int
static
val
action_mode_bar_stub
:
Int
static
val
action_mode_close_button
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
activity_chooser_view_content
:
Int
static
val
add
:
Int
static
val
alertTitle
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
bottom
:
Int
static
val
buttonPanel
:
Int
static
val
checkbox
:
Int
static
val
chronometer
:
Int
static
val
content
:
Int
static
val
contentPanel
:
Int
static
val
custom
:
Int
static
val
customPanel
:
Int
static
val
decor_content_parent
:
Int
static
val
default_activity_button
:
Int
static
val
edit_query
:
Int
static
val
end
:
Int
static
val
expand_activities_button
:
Int
static
val
expanded_menu
:
Int
static
val
forever
:
Int
static
val
group_divider
:
Int
static
val
home
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
image
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
left
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
listMode
:
Int
static
val
list_item
:
Int
static
val
message
:
Int
static
val
multiply
:
Int
static
val
none
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
parentPanel
:
Int
static
val
progress_circular
:
Int
static
val
progress_horizontal
:
Int
static
val
radio
:
Int
static
val
right
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
screen
:
Int
static
val
scrollIndicatorDown
:
Int
static
val
scrollIndicatorUp
:
Int
static
val
scrollView
:
Int
static
val
search_badge
:
Int
static
val
search_bar
:
Int
static
val
search_button
:
Int
static
val
search_close_btn
:
Int
static
val
search_edit_frame
:
Int
static
val
search_go_btn
:
Int
static
val
search_mag_icon
:
Int
static
val
search_plate
:
Int
static
val
search_src_text
:
Int
static
val
search_voice_btn
:
Int
static
val
select_dialog_listview
:
Int
static
val
shortcut
:
Int
static
val
spacer
:
Int
static
val
split_action_bar
:
Int
static
val
src_atop
:
Int
static
val
src_in
:
Int
static
val
src_over
:
Int
static
val
start
:
Int
static
val
submenuarrow
:
Int
static
val
submit_area
:
Int
static
val
tabMode
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
textSpacerNoButtons
:
Int
static
val
textSpacerNoTitle
:
Int
static
val
time
:
Int
static
val
title
:
Int
static
val
titleDividerNoCustom
:
Int
static
val
title_template
:
Int
static
val
top
:
Int
static
val
topPanel
:
Int
static
val
uniform
:
Int
static
val
up
:
Int
static
val
wrap_content
:
Int
class
integer
Module Contents
static
val
abc_config_activityDefaultDur
:
Int
static
val
abc_config_activityShortDur
:
Int
static
val
cancel_button_image_alpha
:
Int
static
val
config_tooltipAnimTime
:
Int
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
abc_action_bar_title_item
:
Int
static
val
abc_action_bar_up_container
:
Int
static
val
abc_action_menu_item_layout
:
Int
static
val
abc_action_menu_layout
:
Int
static
val
abc_action_mode_bar
:
Int
static
val
abc_action_mode_close_item_material
:
Int
static
val
abc_activity_chooser_view
:
Int
static
val
abc_activity_chooser_view_list_item
:
Int
static
val
abc_alert_dialog_button_bar_material
:
Int
static
val
abc_alert_dialog_material
:
Int
static
val
abc_alert_dialog_title_material
:
Int
static
val
abc_cascading_menu_item_layout
:
Int
static
val
abc_dialog_title_material
:
Int
static
val
abc_expanded_menu_layout
:
Int
static
val
abc_list_menu_item_checkbox
:
Int
static
val
abc_list_menu_item_icon
:
Int
static
val
abc_list_menu_item_layout
:
Int
static
val
abc_list_menu_item_radio
:
Int
static
val
abc_popup_menu_header_item_layout
:
Int
static
val
abc_popup_menu_item_layout
:
Int
static
val
abc_screen_content_include
:
Int
static
val
abc_screen_simple
:
Int
static
val
abc_screen_simple_overlay_action_mode
:
Int
static
val
abc_screen_toolbar
:
Int
static
val
abc_search_dropdown_item_icons_2line
:
Int
static
val
abc_search_view
:
Int
static
val
abc_select_dialog_material
:
Int
static
val
abc_tooltip
:
Int
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
static
val
select_dialog_item_material
:
Int
static
val
select_dialog_multichoice_material
:
Int
static
val
select_dialog_singlechoice_material
:
Int
static
val
support_simple_spinner_dropdown_item
:
Int
class
string
Module Contents
static
val
abc_action_bar_home_description
:
Int
static
val
abc_action_bar_up_description
:
Int
static
val
abc_action_menu_overflow_description
:
Int
static
val
abc_action_mode_done
:
Int
static
val
abc_activity_chooser_view_see_all
:
Int
static
val
abc_activitychooserview_choose_application
:
Int
static
val
abc_capital_off
:
Int
static
val
abc_capital_on
:
Int
static
val
abc_font_family_body_1_material
:
Int
static
val
abc_font_family_body_2_material
:
Int
static
val
abc_font_family_button_material
:
Int
static
val
abc_font_family_caption_material
:
Int
static
val
abc_font_family_display_1_material
:
Int
static
val
abc_font_family_display_2_material
:
Int
static
val
abc_font_family_display_3_material
:
Int
static
val
abc_font_family_display_4_material
:
Int
static
val
abc_font_family_headline_material
:
Int
static
val
abc_font_family_menu_material
:
Int
static
val
abc_font_family_subhead_material
:
Int
static
val
abc_font_family_title_material
:
Int
static
val
abc_menu_alt_shortcut_label
:
Int
static
val
abc_menu_ctrl_shortcut_label
:
Int
static
val
abc_menu_delete_shortcut_label
:
Int
static
val
abc_menu_enter_shortcut_label
:
Int
static
val
abc_menu_function_shortcut_label
:
Int
static
val
abc_menu_meta_shortcut_label
:
Int
static
val
abc_menu_shift_shortcut_label
:
Int
static
val
abc_menu_space_shortcut_label
:
Int
static
val
abc_menu_sym_shortcut_label
:
Int
static
val
abc_prepend_shortcut_label
:
Int
static
val
abc_search_hint
:
Int
static
val
abc_searchview_description_clear
:
Int
static
val
abc_searchview_description_query
:
Int
static
val
abc_searchview_description_search
:
Int
static
val
abc_searchview_description_submit
:
Int
static
val
abc_searchview_description_voice
:
Int
static
val
abc_shareactionprovider_share_with
:
Int
static
val
abc_shareactionprovider_share_with_application
:
Int
static
val
abc_toolbar_collapse_description
:
Int
static
val
search_menu_title
:
Int
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
AlertDialog_AppCompat
:
Int
static
val
AlertDialog_AppCompat_Light
:
Int
static
val
Animation_AppCompat_Dialog
:
Int
static
val
Animation_AppCompat_DropDownUp
:
Int
static
val
Animation_AppCompat_Tooltip
:
Int
static
val
Base_AlertDialog_AppCompat
:
Int
static
val
Base_AlertDialog_AppCompat_Light
:
Int
static
val
Base_Animation_AppCompat_Dialog
:
Int
static
val
Base_Animation_AppCompat_DropDownUp
:
Int
static
val
Base_Animation_AppCompat_Tooltip
:
Int
static
val
Base_DialogWindowTitleBackground_AppCompat
:
Int
static
val
Base_DialogWindowTitle_AppCompat
:
Int
static
val
Base_TextAppearance_AppCompat
:
Int
static
val
Base_TextAppearance_AppCompat_Body1
:
Int
static
val
Base_TextAppearance_AppCompat_Body2
:
Int
static
val
Base_TextAppearance_AppCompat_Button
:
Int
static
val
Base_TextAppearance_AppCompat_Caption
:
Int
static
val
Base_TextAppearance_AppCompat_Display1
:
Int
static
val
Base_TextAppearance_AppCompat_Display2
:
Int
static
val
Base_TextAppearance_AppCompat_Display3
:
Int
static
val
Base_TextAppearance_AppCompat_Display4
:
Int
static
val
Base_TextAppearance_AppCompat_Headline
:
Int
static
val
Base_TextAppearance_AppCompat_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Large
:
Int
static
val
Base_TextAppearance_AppCompat_Large_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
:
Int
static
val
Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
:
Int
static
val
Base_TextAppearance_AppCompat_Medium
:
Int
static
val
Base_TextAppearance_AppCompat_Medium_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Menu
:
Int
static
val
Base_TextAppearance_AppCompat_SearchResult
:
Int
static
val
Base_TextAppearance_AppCompat_SearchResult_Subtitle
:
Int
static
val
Base_TextAppearance_AppCompat_SearchResult_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Small
:
Int
static
val
Base_TextAppearance_AppCompat_Small_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Subhead
:
Int
static
val
Base_TextAppearance_AppCompat_Subhead_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Title_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Tooltip
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Menu
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionMode_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button_Colored
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_DropDownItem
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_PopupMenu_Header
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_PopupMenu_Large
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_PopupMenu_Small
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Switch
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem
:
Int
static
val
Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item
:
Int
static
val
Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle
:
Int
static
val
Base_TextAppearance_Widget_AppCompat_Toolbar_Title
:
Int
static
val
Base_ThemeOverlay_AppCompat
:
Int
static
val
Base_ThemeOverlay_AppCompat_ActionBar
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dark
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dark_ActionBar
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dialog
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dialog_Alert
:
Int
static
val
Base_ThemeOverlay_AppCompat_Light
:
Int
static
val
Base_Theme_AppCompat
:
Int
static
val
Base_Theme_AppCompat_CompactMenu
:
Int
static
val
Base_Theme_AppCompat_Dialog
:
Int
static
val
Base_Theme_AppCompat_DialogWhenLarge
:
Int
static
val
Base_Theme_AppCompat_Dialog_Alert
:
Int
static
val
Base_Theme_AppCompat_Dialog_FixedSize
:
Int
static
val
Base_Theme_AppCompat_Dialog_MinWidth
:
Int
static
val
Base_Theme_AppCompat_Light
:
Int
static
val
Base_Theme_AppCompat_Light_DarkActionBar
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog
:
Int
static
val
Base_Theme_AppCompat_Light_DialogWhenLarge
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog_Alert
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog_FixedSize
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog_MinWidth
:
Int
static
val
Base_V21_ThemeOverlay_AppCompat_Dialog
:
Int
static
val
Base_V21_Theme_AppCompat
:
Int
static
val
Base_V21_Theme_AppCompat_Dialog
:
Int
static
val
Base_V21_Theme_AppCompat_Light
:
Int
static
val
Base_V21_Theme_AppCompat_Light_Dialog
:
Int
static
val
Base_V22_Theme_AppCompat
:
Int
static
val
Base_V22_Theme_AppCompat_Light
:
Int
static
val
Base_V23_Theme_AppCompat
:
Int
static
val
Base_V23_Theme_AppCompat_Light
:
Int
static
val
Base_V26_Theme_AppCompat
:
Int
static
val
Base_V26_Theme_AppCompat_Light
:
Int
static
val
Base_V26_Widget_AppCompat_Toolbar
:
Int
static
val
Base_V28_Theme_AppCompat
:
Int
static
val
Base_V28_Theme_AppCompat_Light
:
Int
static
val
Base_V7_ThemeOverlay_AppCompat_Dialog
:
Int
static
val
Base_V7_Theme_AppCompat
:
Int
static
val
Base_V7_Theme_AppCompat_Dialog
:
Int
static
val
Base_V7_Theme_AppCompat_Light
:
Int
static
val
Base_V7_Theme_AppCompat_Light_Dialog
:
Int
static
val
Base_V7_Widget_AppCompat_AutoCompleteTextView
:
Int
static
val
Base_V7_Widget_AppCompat_EditText
:
Int
static
val
Base_V7_Widget_AppCompat_Toolbar
:
Int
static
val
Base_Widget_AppCompat_ActionBar
:
Int
static
val
Base_Widget_AppCompat_ActionBar_Solid
:
Int
static
val
Base_Widget_AppCompat_ActionBar_TabBar
:
Int
static
val
Base_Widget_AppCompat_ActionBar_TabText
:
Int
static
val
Base_Widget_AppCompat_ActionBar_TabView
:
Int
static
val
Base_Widget_AppCompat_ActionButton
:
Int
static
val
Base_Widget_AppCompat_ActionButton_CloseMode
:
Int
static
val
Base_Widget_AppCompat_ActionButton_Overflow
:
Int
static
val
Base_Widget_AppCompat_ActionMode
:
Int
static
val
Base_Widget_AppCompat_ActivityChooserView
:
Int
static
val
Base_Widget_AppCompat_AutoCompleteTextView
:
Int
static
val
Base_Widget_AppCompat_Button
:
Int
static
val
Base_Widget_AppCompat_ButtonBar
:
Int
static
val
Base_Widget_AppCompat_ButtonBar_AlertDialog
:
Int
static
val
Base_Widget_AppCompat_Button_Borderless
:
Int
static
val
Base_Widget_AppCompat_Button_Borderless_Colored
:
Int
static
val
Base_Widget_AppCompat_Button_ButtonBar_AlertDialog
:
Int
static
val
Base_Widget_AppCompat_Button_Colored
:
Int
static
val
Base_Widget_AppCompat_Button_Small
:
Int
static
val
Base_Widget_AppCompat_CompoundButton_CheckBox
:
Int
static
val
Base_Widget_AppCompat_CompoundButton_RadioButton
:
Int
static
val
Base_Widget_AppCompat_CompoundButton_Switch
:
Int
static
val
Base_Widget_AppCompat_DrawerArrowToggle
:
Int
static
val
Base_Widget_AppCompat_DrawerArrowToggle_Common
:
Int
static
val
Base_Widget_AppCompat_DropDownItem_Spinner
:
Int
static
val
Base_Widget_AppCompat_EditText
:
Int
static
val
Base_Widget_AppCompat_ImageButton
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_Solid
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabBar
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabText
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabView
:
Int
static
val
Base_Widget_AppCompat_Light_PopupMenu
:
Int
static
val
Base_Widget_AppCompat_Light_PopupMenu_Overflow
:
Int
static
val
Base_Widget_AppCompat_ListMenuView
:
Int
static
val
Base_Widget_AppCompat_ListPopupWindow
:
Int
static
val
Base_Widget_AppCompat_ListView
:
Int
static
val
Base_Widget_AppCompat_ListView_DropDown
:
Int
static
val
Base_Widget_AppCompat_ListView_Menu
:
Int
static
val
Base_Widget_AppCompat_PopupMenu
:
Int
static
val
Base_Widget_AppCompat_PopupMenu_Overflow
:
Int
static
val
Base_Widget_AppCompat_PopupWindow
:
Int
static
val
Base_Widget_AppCompat_ProgressBar
:
Int
static
val
Base_Widget_AppCompat_ProgressBar_Horizontal
:
Int
static
val
Base_Widget_AppCompat_RatingBar
:
Int
static
val
Base_Widget_AppCompat_RatingBar_Indicator
:
Int
static
val
Base_Widget_AppCompat_RatingBar_Small
:
Int
static
val
Base_Widget_AppCompat_SearchView
:
Int
static
val
Base_Widget_AppCompat_SearchView_ActionBar
:
Int
static
val
Base_Widget_AppCompat_SeekBar
:
Int
static
val
Base_Widget_AppCompat_SeekBar_Discrete
:
Int
static
val
Base_Widget_AppCompat_Spinner
:
Int
static
val
Base_Widget_AppCompat_Spinner_Underlined
:
Int
static
val
Base_Widget_AppCompat_TextView_SpinnerItem
:
Int
static
val
Base_Widget_AppCompat_Toolbar
:
Int
static
val
Base_Widget_AppCompat_Toolbar_Button_Navigation
:
Int
static
val
Platform_AppCompat
:
Int
static
val
Platform_AppCompat_Light
:
Int
static
val
Platform_ThemeOverlay_AppCompat
:
Int
static
val
Platform_ThemeOverlay_AppCompat_Dark
:
Int
static
val
Platform_ThemeOverlay_AppCompat_Light
:
Int
static
val
Platform_V21_AppCompat
:
Int
static
val
Platform_V21_AppCompat_Light
:
Int
static
val
Platform_V25_AppCompat
:
Int
static
val
Platform_V25_AppCompat_Light
:
Int
static
val
Platform_Widget_AppCompat_Spinner
:
Int
static
val
RtlOverlay_DialogWindowTitle_AppCompat
:
Int
static
val
RtlOverlay_Widget_AppCompat_ActionBar_TitleItem
:
Int
static
val
RtlOverlay_Widget_AppCompat_DialogTitle_Icon
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_Text
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_Title
:
Int
static
val
RtlOverlay_Widget_AppCompat_SearchView_MagIcon
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Query
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Text
:
Int
static
val
RtlUnderlay_Widget_AppCompat_ActionButton
:
Int
static
val
RtlUnderlay_Widget_AppCompat_ActionButton_Overflow
:
Int
static
val
TextAppearance_AppCompat
:
Int
static
val
TextAppearance_AppCompat_Body1
:
Int
static
val
TextAppearance_AppCompat_Body2
:
Int
static
val
TextAppearance_AppCompat_Button
:
Int
static
val
TextAppearance_AppCompat_Caption
:
Int
static
val
TextAppearance_AppCompat_Display1
:
Int
static
val
TextAppearance_AppCompat_Display2
:
Int
static
val
TextAppearance_AppCompat_Display3
:
Int
static
val
TextAppearance_AppCompat_Display4
:
Int
static
val
TextAppearance_AppCompat_Headline
:
Int
static
val
TextAppearance_AppCompat_Inverse
:
Int
static
val
TextAppearance_AppCompat_Large
:
Int
static
val
TextAppearance_AppCompat_Large_Inverse
:
Int
static
val
TextAppearance_AppCompat_Light_SearchResult_Subtitle
:
Int
static
val
TextAppearance_AppCompat_Light_SearchResult_Title
:
Int
static
val
TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
:
Int
static
val
TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
:
Int
static
val
TextAppearance_AppCompat_Medium
:
Int
static
val
TextAppearance_AppCompat_Medium_Inverse
:
Int
static
val
TextAppearance_AppCompat_Menu
:
Int
static
val
TextAppearance_AppCompat_SearchResult_Subtitle
:
Int
static
val
TextAppearance_AppCompat_SearchResult_Title
:
Int
static
val
TextAppearance_AppCompat_Small
:
Int
static
val
TextAppearance_AppCompat_Small_Inverse
:
Int
static
val
TextAppearance_AppCompat_Subhead
:
Int
static
val
TextAppearance_AppCompat_Subhead_Inverse
:
Int
static
val
TextAppearance_AppCompat_Title
:
Int
static
val
TextAppearance_AppCompat_Title_Inverse
:
Int
static
val
TextAppearance_AppCompat_Tooltip
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Menu
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Subtitle
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Title
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Subtitle
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Title
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_Button
:
Int
static
val
TextAppearance_AppCompat_Widget_Button_Borderless_Colored
:
Int
static
val
TextAppearance_AppCompat_Widget_Button_Colored
:
Int
static
val
TextAppearance_AppCompat_Widget_Button_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_DropDownItem
:
Int
static
val
TextAppearance_AppCompat_Widget_PopupMenu_Header
:
Int
static
val
TextAppearance_AppCompat_Widget_PopupMenu_Large
:
Int
static
val
TextAppearance_AppCompat_Widget_PopupMenu_Small
:
Int
static
val
TextAppearance_AppCompat_Widget_Switch
:
Int
static
val
TextAppearance_AppCompat_Widget_TextView_SpinnerItem
:
Int
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
TextAppearance_Widget_AppCompat_ExpandedMenu_Item
:
Int
static
val
TextAppearance_Widget_AppCompat_Toolbar_Subtitle
:
Int
static
val
TextAppearance_Widget_AppCompat_Toolbar_Title
:
Int
static
val
ThemeOverlay_AppCompat
:
Int
static
val
ThemeOverlay_AppCompat_ActionBar
:
Int
static
val
ThemeOverlay_AppCompat_Dark
:
Int
static
val
ThemeOverlay_AppCompat_Dark_ActionBar
:
Int
static
val
ThemeOverlay_AppCompat_Dialog
:
Int
static
val
ThemeOverlay_AppCompat_Dialog_Alert
:
Int
static
val
ThemeOverlay_AppCompat_Light
:
Int
static
val
Theme_AppCompat
:
Int
static
val
Theme_AppCompat_CompactMenu
:
Int
static
val
Theme_AppCompat_DayNight
:
Int
static
val
Theme_AppCompat_DayNight_DarkActionBar
:
Int
static
val
Theme_AppCompat_DayNight_Dialog
:
Int
static
val
Theme_AppCompat_DayNight_DialogWhenLarge
:
Int
static
val
Theme_AppCompat_DayNight_Dialog_Alert
:
Int
static
val
Theme_AppCompat_DayNight_Dialog_MinWidth
:
Int
static
val
Theme_AppCompat_DayNight_NoActionBar
:
Int
static
val
Theme_AppCompat_Dialog
:
Int
static
val
Theme_AppCompat_DialogWhenLarge
:
Int
static
val
Theme_AppCompat_Dialog_Alert
:
Int
static
val
Theme_AppCompat_Dialog_MinWidth
:
Int
static
val
Theme_AppCompat_Light
:
Int
static
val
Theme_AppCompat_Light_DarkActionBar
:
Int
static
val
Theme_AppCompat_Light_Dialog
:
Int
static
val
Theme_AppCompat_Light_DialogWhenLarge
:
Int
static
val
Theme_AppCompat_Light_Dialog_Alert
:
Int
static
val
Theme_AppCompat_Light_Dialog_MinWidth
:
Int
static
val
Theme_AppCompat_Light_NoActionBar
:
Int
static
val
Theme_AppCompat_NoActionBar
:
Int
static
val
Widget_AppCompat_ActionBar
:
Int
static
val
Widget_AppCompat_ActionBar_Solid
:
Int
static
val
Widget_AppCompat_ActionBar_TabBar
:
Int
static
val
Widget_AppCompat_ActionBar_TabText
:
Int
static
val
Widget_AppCompat_ActionBar_TabView
:
Int
static
val
Widget_AppCompat_ActionButton
:
Int
static
val
Widget_AppCompat_ActionButton_CloseMode
:
Int
static
val
Widget_AppCompat_ActionButton_Overflow
:
Int
static
val
Widget_AppCompat_ActionMode
:
Int
static
val
Widget_AppCompat_ActivityChooserView
:
Int
static
val
Widget_AppCompat_AutoCompleteTextView
:
Int
static
val
Widget_AppCompat_Button
:
Int
static
val
Widget_AppCompat_ButtonBar
:
Int
static
val
Widget_AppCompat_ButtonBar_AlertDialog
:
Int
static
val
Widget_AppCompat_Button_Borderless
:
Int
static
val
Widget_AppCompat_Button_Borderless_Colored
:
Int
static
val
Widget_AppCompat_Button_ButtonBar_AlertDialog
:
Int
static
val
Widget_AppCompat_Button_Colored
:
Int
static
val
Widget_AppCompat_Button_Small
:
Int
static
val
Widget_AppCompat_CompoundButton_CheckBox
:
Int
static
val
Widget_AppCompat_CompoundButton_RadioButton
:
Int
static
val
Widget_AppCompat_CompoundButton_Switch
:
Int
static
val
Widget_AppCompat_DrawerArrowToggle
:
Int
static
val
Widget_AppCompat_DropDownItem_Spinner
:
Int
static
val
Widget_AppCompat_EditText
:
Int
static
val
Widget_AppCompat_ImageButton
:
Int
static
val
Widget_AppCompat_Light_ActionBar
:
Int
static
val
Widget_AppCompat_Light_ActionBar_Solid
:
Int
static
val
Widget_AppCompat_Light_ActionBar_Solid_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabBar
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabBar_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabText
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabText_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabView
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabView_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionButton
:
Int
static
val
Widget_AppCompat_Light_ActionButton_CloseMode
:
Int
static
val
Widget_AppCompat_Light_ActionButton_Overflow
:
Int
static
val
Widget_AppCompat_Light_ActionMode_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActivityChooserView
:
Int
static
val
Widget_AppCompat_Light_AutoCompleteTextView
:
Int
static
val
Widget_AppCompat_Light_DropDownItem_Spinner
:
Int
static
val
Widget_AppCompat_Light_ListPopupWindow
:
Int
static
val
Widget_AppCompat_Light_ListView_DropDown
:
Int
static
val
Widget_AppCompat_Light_PopupMenu
:
Int
static
val
Widget_AppCompat_Light_PopupMenu_Overflow
:
Int
static
val
Widget_AppCompat_Light_SearchView
:
Int
static
val
Widget_AppCompat_Light_Spinner_DropDown_ActionBar
:
Int
static
val
Widget_AppCompat_ListMenuView
:
Int
static
val
Widget_AppCompat_ListPopupWindow
:
Int
static
val
Widget_AppCompat_ListView
:
Int
static
val
Widget_AppCompat_ListView_DropDown
:
Int
static
val
Widget_AppCompat_ListView_Menu
:
Int
static
val
Widget_AppCompat_PopupMenu
:
Int
static
val
Widget_AppCompat_PopupMenu_Overflow
:
Int
static
val
Widget_AppCompat_PopupWindow
:
Int
static
val
Widget_AppCompat_ProgressBar
:
Int
static
val
Widget_AppCompat_ProgressBar_Horizontal
:
Int
static
val
Widget_AppCompat_RatingBar
:
Int
static
val
Widget_AppCompat_RatingBar_Indicator
:
Int
static
val
Widget_AppCompat_RatingBar_Small
:
Int
static
val
Widget_AppCompat_SearchView
:
Int
static
val
Widget_AppCompat_SearchView_ActionBar
:
Int
static
val
Widget_AppCompat_SeekBar
:
Int
static
val
Widget_AppCompat_SeekBar_Discrete
:
Int
static
val
Widget_AppCompat_Spinner
:
Int
static
val
Widget_AppCompat_Spinner_DropDown
:
Int
static
val
Widget_AppCompat_Spinner_DropDown_ActionBar
:
Int
static
val
Widget_AppCompat_Spinner_Underlined
:
Int
static
val
Widget_AppCompat_TextView_SpinnerItem
:
Int
static
val
Widget_AppCompat_Toolbar
:
Int
static
val
Widget_AppCompat_Toolbar_Button_Navigation
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
static
val
Widget_Support_CoordinatorLayout
:
Int
class
styleable
Module Contents
static
val
ActionBar
:
IntArray
static
val
ActionBarLayout
:
IntArray
static
val
ActionBarLayout_android_layout_gravity
:
Int
static
val
ActionBar_background
:
Int
static
val
ActionBar_backgroundSplit
:
Int
static
val
ActionBar_backgroundStacked
:
Int
static
val
ActionBar_contentInsetEnd
:
Int
static
val
ActionBar_contentInsetEndWithActions
:
Int
static
val
ActionBar_contentInsetLeft
:
Int
static
val
ActionBar_contentInsetRight
:
Int
static
val
ActionBar_contentInsetStart
:
Int
static
val
ActionBar_contentInsetStartWithNavigation
:
Int
static
val
ActionBar_customNavigationLayout
:
Int
static
val
ActionBar_displayOptions
:
Int
static
val
ActionBar_divider
:
Int
static
val
ActionBar_elevation
:
Int
static
val
ActionBar_height
:
Int
static
val
ActionBar_hideOnContentScroll
:
Int
static
val
ActionBar_homeAsUpIndicator
:
Int
static
val
ActionBar_homeLayout
:
Int
static
val
ActionBar_icon
:
Int
static
val
ActionBar_indeterminateProgressStyle
:
Int
static
val
ActionBar_itemPadding
:
Int
static
val
ActionBar_logo
:
Int
static
val
ActionBar_navigationMode
:
Int
static
val
ActionBar_popupTheme
:
Int
static
val
ActionBar_progressBarPadding
:
Int
static
val
ActionBar_progressBarStyle
:
Int
static
val
ActionBar_subtitle
:
Int
static
val
ActionBar_subtitleTextStyle
:
Int
static
val
ActionBar_title
:
Int
static
val
ActionBar_titleTextStyle
:
Int
static
val
ActionMenuItemView
:
IntArray
static
val
ActionMenuItemView_android_minWidth
:
Int
static
val
ActionMenuView
:
IntArray
static
val
ActionMode
:
IntArray
static
val
ActionMode_background
:
Int
static
val
ActionMode_backgroundSplit
:
Int
static
val
ActionMode_closeItemLayout
:
Int
static
val
ActionMode_height
:
Int
static
val
ActionMode_subtitleTextStyle
:
Int
static
val
ActionMode_titleTextStyle
:
Int
static
val
ActivityChooserView
:
IntArray
static
val
ActivityChooserView_expandActivityOverflowButtonDrawable
:
Int
static
val
ActivityChooserView_initialActivityCount
:
Int
static
val
AlertDialog
:
IntArray
static
val
AlertDialog_android_layout
:
Int
static
val
AlertDialog_buttonIconDimen
:
Int
static
val
AlertDialog_buttonPanelSideLayout
:
Int
static
val
AlertDialog_listItemLayout
:
Int
static
val
AlertDialog_listLayout
:
Int
static
val
AlertDialog_multiChoiceItemLayout
:
Int
static
val
AlertDialog_showTitle
:
Int
static
val
AlertDialog_singleChoiceItemLayout
:
Int
static
val
AnimatedStateListDrawableCompat
:
IntArray
static
val
AnimatedStateListDrawableCompat_android_constantSize
:
Int
static
val
AnimatedStateListDrawableCompat_android_dither
:
Int
static
val
AnimatedStateListDrawableCompat_android_enterFadeDuration
:
Int
static
val
AnimatedStateListDrawableCompat_android_exitFadeDuration
:
Int
static
val
AnimatedStateListDrawableCompat_android_variablePadding
:
Int
static
val
AnimatedStateListDrawableCompat_android_visible
:
Int
static
val
AnimatedStateListDrawableItem
:
IntArray
static
val
AnimatedStateListDrawableItem_android_drawable
:
Int
static
val
AnimatedStateListDrawableItem_android_id
:
Int
static
val
AnimatedStateListDrawableTransition
:
IntArray
static
val
AnimatedStateListDrawableTransition_android_drawable
:
Int
static
val
AnimatedStateListDrawableTransition_android_fromId
:
Int
static
val
AnimatedStateListDrawableTransition_android_reversible
:
Int
static
val
AnimatedStateListDrawableTransition_android_toId
:
Int
static
val
AppCompatImageView
:
IntArray
static
val
AppCompatImageView_android_src
:
Int
static
val
AppCompatImageView_srcCompat
:
Int
static
val
AppCompatImageView_tint
:
Int
static
val
AppCompatImageView_tintMode
:
Int
static
val
AppCompatSeekBar
:
IntArray
static
val
AppCompatSeekBar_android_thumb
:
Int
static
val
AppCompatSeekBar_tickMark
:
Int
static
val
AppCompatSeekBar_tickMarkTint
:
Int
static
val
AppCompatSeekBar_tickMarkTintMode
:
Int
static
val
AppCompatTextHelper
:
IntArray
static
val
AppCompatTextHelper_android_drawableBottom
:
Int
static
val
AppCompatTextHelper_android_drawableEnd
:
Int
static
val
AppCompatTextHelper_android_drawableLeft
:
Int
static
val
AppCompatTextHelper_android_drawableRight
:
Int
static
val
AppCompatTextHelper_android_drawableStart
:
Int
static
val
AppCompatTextHelper_android_drawableTop
:
Int
static
val
AppCompatTextHelper_android_textAppearance
:
Int
static
val
AppCompatTextView
:
IntArray
static
val
AppCompatTextView_android_textAppearance
:
Int
static
val
AppCompatTextView_autoSizeMaxTextSize
:
Int
static
val
AppCompatTextView_autoSizeMinTextSize
:
Int
static
val
AppCompatTextView_autoSizePresetSizes
:
Int
static
val
AppCompatTextView_autoSizeStepGranularity
:
Int
static
val
AppCompatTextView_autoSizeTextType
:
Int
static
val
AppCompatTextView_firstBaselineToTopHeight
:
Int
static
val
AppCompatTextView_fontFamily
:
Int
static
val
AppCompatTextView_lastBaselineToBottomHeight
:
Int
static
val
AppCompatTextView_lineHeight
:
Int
static
val
AppCompatTextView_textAllCaps
:
Int
static
val
AppCompatTheme
:
IntArray
static
val
AppCompatTheme_actionBarDivider
:
Int
static
val
AppCompatTheme_actionBarItemBackground
:
Int
static
val
AppCompatTheme_actionBarPopupTheme
:
Int
static
val
AppCompatTheme_actionBarSize
:
Int
static
val
AppCompatTheme_actionBarSplitStyle
:
Int
static
val
AppCompatTheme_actionBarStyle
:
Int
static
val
AppCompatTheme_actionBarTabBarStyle
:
Int
static
val
AppCompatTheme_actionBarTabStyle
:
Int
static
val
AppCompatTheme_actionBarTabTextStyle
:
Int
static
val
AppCompatTheme_actionBarTheme
:
Int
static
val
AppCompatTheme_actionBarWidgetTheme
:
Int
static
val
AppCompatTheme_actionButtonStyle
:
Int
static
val
AppCompatTheme_actionDropDownStyle
:
Int
static
val
AppCompatTheme_actionMenuTextAppearance
:
Int
static
val
AppCompatTheme_actionMenuTextColor
:
Int
static
val
AppCompatTheme_actionModeBackground
:
Int
static
val
AppCompatTheme_actionModeCloseButtonStyle
:
Int
static
val
AppCompatTheme_actionModeCloseDrawable
:
Int
static
val
AppCompatTheme_actionModeCopyDrawable
:
Int
static
val
AppCompatTheme_actionModeCutDrawable
:
Int
static
val
AppCompatTheme_actionModeFindDrawable
:
Int
static
val
AppCompatTheme_actionModePasteDrawable
:
Int
static
val
AppCompatTheme_actionModePopupWindowStyle
:
Int
static
val
AppCompatTheme_actionModeSelectAllDrawable
:
Int
static
val
AppCompatTheme_actionModeShareDrawable
:
Int
static
val
AppCompatTheme_actionModeSplitBackground
:
Int
static
val
AppCompatTheme_actionModeStyle
:
Int
static
val
AppCompatTheme_actionModeWebSearchDrawable
:
Int
static
val
AppCompatTheme_actionOverflowButtonStyle
:
Int
static
val
AppCompatTheme_actionOverflowMenuStyle
:
Int
static
val
AppCompatTheme_activityChooserViewStyle
:
Int
static
val
AppCompatTheme_alertDialogButtonGroupStyle
:
Int
static
val
AppCompatTheme_alertDialogCenterButtons
:
Int
static
val
AppCompatTheme_alertDialogStyle
:
Int
static
val
AppCompatTheme_alertDialogTheme
:
Int
static
val
AppCompatTheme_android_windowAnimationStyle
:
Int
static
val
AppCompatTheme_android_windowIsFloating
:
Int
static
val
AppCompatTheme_autoCompleteTextViewStyle
:
Int
static
val
AppCompatTheme_borderlessButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarNegativeButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarNeutralButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarPositiveButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarStyle
:
Int
static
val
AppCompatTheme_buttonStyle
:
Int
static
val
AppCompatTheme_buttonStyleSmall
:
Int
static
val
AppCompatTheme_checkboxStyle
:
Int
static
val
AppCompatTheme_checkedTextViewStyle
:
Int
static
val
AppCompatTheme_colorAccent
:
Int
static
val
AppCompatTheme_colorBackgroundFloating
:
Int
static
val
AppCompatTheme_colorButtonNormal
:
Int
static
val
AppCompatTheme_colorControlActivated
:
Int
static
val
AppCompatTheme_colorControlHighlight
:
Int
static
val
AppCompatTheme_colorControlNormal
:
Int
static
val
AppCompatTheme_colorError
:
Int
static
val
AppCompatTheme_colorPrimary
:
Int
static
val
AppCompatTheme_colorPrimaryDark
:
Int
static
val
AppCompatTheme_colorSwitchThumbNormal
:
Int
static
val
AppCompatTheme_controlBackground
:
Int
static
val
AppCompatTheme_dialogCornerRadius
:
Int
static
val
AppCompatTheme_dialogPreferredPadding
:
Int
static
val
AppCompatTheme_dialogTheme
:
Int
static
val
AppCompatTheme_dividerHorizontal
:
Int
static
val
AppCompatTheme_dividerVertical
:
Int
static
val
AppCompatTheme_dropDownListViewStyle
:
Int
static
val
AppCompatTheme_dropdownListPreferredItemHeight
:
Int
static
val
AppCompatTheme_editTextBackground
:
Int
static
val
AppCompatTheme_editTextColor
:
Int
static
val
AppCompatTheme_editTextStyle
:
Int
static
val
AppCompatTheme_homeAsUpIndicator
:
Int
static
val
AppCompatTheme_imageButtonStyle
:
Int
static
val
AppCompatTheme_listChoiceBackgroundIndicator
:
Int
static
val
AppCompatTheme_listDividerAlertDialog
:
Int
static
val
AppCompatTheme_listMenuViewStyle
:
Int
static
val
AppCompatTheme_listPopupWindowStyle
:
Int
static
val
AppCompatTheme_listPreferredItemHeight
:
Int
static
val
AppCompatTheme_listPreferredItemHeightLarge
:
Int
static
val
AppCompatTheme_listPreferredItemHeightSmall
:
Int
static
val
AppCompatTheme_listPreferredItemPaddingLeft
:
Int
static
val
AppCompatTheme_listPreferredItemPaddingRight
:
Int
static
val
AppCompatTheme_panelBackground
:
Int
static
val
AppCompatTheme_panelMenuListTheme
:
Int
static
val
AppCompatTheme_panelMenuListWidth
:
Int
static
val
AppCompatTheme_popupMenuStyle
:
Int
static
val
AppCompatTheme_popupWindowStyle
:
Int
static
val
AppCompatTheme_radioButtonStyle
:
Int
static
val
AppCompatTheme_ratingBarStyle
:
Int
static
val
AppCompatTheme_ratingBarStyleIndicator
:
Int
static
val
AppCompatTheme_ratingBarStyleSmall
:
Int
static
val
AppCompatTheme_searchViewStyle
:
Int
static
val
AppCompatTheme_seekBarStyle
:
Int
static
val
AppCompatTheme_selectableItemBackground
:
Int
static
val
AppCompatTheme_selectableItemBackgroundBorderless
:
Int
static
val
AppCompatTheme_spinnerDropDownItemStyle
:
Int
static
val
AppCompatTheme_spinnerStyle
:
Int
static
val
AppCompatTheme_switchStyle
:
Int
static
val
AppCompatTheme_textAppearanceLargePopupMenu
:
Int
static
val
AppCompatTheme_textAppearanceListItem
:
Int
static
val
AppCompatTheme_textAppearanceListItemSecondary
:
Int
static
val
AppCompatTheme_textAppearanceListItemSmall
:
Int
static
val
AppCompatTheme_textAppearancePopupMenuHeader
:
Int
static
val
AppCompatTheme_textAppearanceSearchResultSubtitle
:
Int
static
val
AppCompatTheme_textAppearanceSearchResultTitle
:
Int
static
val
AppCompatTheme_textAppearanceSmallPopupMenu
:
Int
static
val
AppCompatTheme_textColorAlertDialogListItem
:
Int
static
val
AppCompatTheme_textColorSearchUrl
:
Int
static
val
AppCompatTheme_toolbarNavigationButtonStyle
:
Int
static
val
AppCompatTheme_toolbarStyle
:
Int
static
val
AppCompatTheme_tooltipForegroundColor
:
Int
static
val
AppCompatTheme_tooltipFrameBackground
:
Int
static
val
AppCompatTheme_viewInflaterClass
:
Int
static
val
AppCompatTheme_windowActionBar
:
Int
static
val
AppCompatTheme_windowActionBarOverlay
:
Int
static
val
AppCompatTheme_windowActionModeOverlay
:
Int
static
val
AppCompatTheme_windowFixedHeightMajor
:
Int
static
val
AppCompatTheme_windowFixedHeightMinor
:
Int
static
val
AppCompatTheme_windowFixedWidthMajor
:
Int
static
val
AppCompatTheme_windowFixedWidthMinor
:
Int
static
val
AppCompatTheme_windowMinWidthMajor
:
Int
static
val
AppCompatTheme_windowMinWidthMinor
:
Int
static
val
AppCompatTheme_windowNoTitle
:
Int
static
val
ButtonBarLayout
:
IntArray
static
val
ButtonBarLayout_allowStacking
:
Int
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
CompoundButton
:
IntArray
static
val
CompoundButton_android_button
:
Int
static
val
CompoundButton_buttonTint
:
Int
static
val
CompoundButton_buttonTintMode
:
Int
static
val
CoordinatorLayout
:
IntArray
static
val
CoordinatorLayout_Layout
:
IntArray
static
val
CoordinatorLayout_Layout_android_layout_gravity
:
Int
static
val
CoordinatorLayout_Layout_layout_anchor
:
Int
static
val
CoordinatorLayout_Layout_layout_anchorGravity
:
Int
static
val
CoordinatorLayout_Layout_layout_behavior
:
Int
static
val
CoordinatorLayout_Layout_layout_dodgeInsetEdges
:
Int
static
val
CoordinatorLayout_Layout_layout_insetEdge
:
Int
static
val
CoordinatorLayout_Layout_layout_keyline
:
Int
static
val
CoordinatorLayout_keylines
:
Int
static
val
CoordinatorLayout_statusBarBackground
:
Int
static
val
DrawerArrowToggle
:
IntArray
static
val
DrawerArrowToggle_arrowHeadLength
:
Int
static
val
DrawerArrowToggle_arrowShaftLength
:
Int
static
val
DrawerArrowToggle_barLength
:
Int
static
val
DrawerArrowToggle_color
:
Int
static
val
DrawerArrowToggle_drawableSize
:
Int
static
val
DrawerArrowToggle_gapBetweenBars
:
Int
static
val
DrawerArrowToggle_spinBars
:
Int
static
val
DrawerArrowToggle_thickness
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
static
val
LinearLayoutCompat
:
IntArray
static
val
LinearLayoutCompat_Layout
:
IntArray
static
val
LinearLayoutCompat_Layout_android_layout_gravity
:
Int
static
val
LinearLayoutCompat_Layout_android_layout_height
:
Int
static
val
LinearLayoutCompat_Layout_android_layout_weight
:
Int
static
val
LinearLayoutCompat_Layout_android_layout_width
:
Int
static
val
LinearLayoutCompat_android_baselineAligned
:
Int
static
val
LinearLayoutCompat_android_baselineAlignedChildIndex
:
Int
static
val
LinearLayoutCompat_android_gravity
:
Int
static
val
LinearLayoutCompat_android_orientation
:
Int
static
val
LinearLayoutCompat_android_weightSum
:
Int
static
val
LinearLayoutCompat_divider
:
Int
static
val
LinearLayoutCompat_dividerPadding
:
Int
static
val
LinearLayoutCompat_measureWithLargestChild
:
Int
static
val
LinearLayoutCompat_showDividers
:
Int
static
val
ListPopupWindow
:
IntArray
static
val
ListPopupWindow_android_dropDownHorizontalOffset
:
Int
static
val
ListPopupWindow_android_dropDownVerticalOffset
:
Int
static
val
MenuGroup
:
IntArray
static
val
MenuGroup_android_checkableBehavior
:
Int
static
val
MenuGroup_android_enabled
:
Int
static
val
MenuGroup_android_id
:
Int
static
val
MenuGroup_android_menuCategory
:
Int
static
val
MenuGroup_android_orderInCategory
:
Int
static
val
MenuGroup_android_visible
:
Int
static
val
MenuItem
:
IntArray
static
val
MenuItem_actionLayout
:
Int
static
val
MenuItem_actionProviderClass
:
Int
static
val
MenuItem_actionViewClass
:
Int
static
val
MenuItem_alphabeticModifiers
:
Int
static
val
MenuItem_android_alphabeticShortcut
:
Int
static
val
MenuItem_android_checkable
:
Int
static
val
MenuItem_android_checked
:
Int
static
val
MenuItem_android_enabled
:
Int
static
val
MenuItem_android_icon
:
Int
static
val
MenuItem_android_id
:
Int
static
val
MenuItem_android_menuCategory
:
Int
static
val
MenuItem_android_numericShortcut
:
Int
static
val
MenuItem_android_onClick
:
Int
static
val
MenuItem_android_orderInCategory
:
Int
static
val
MenuItem_android_title
:
Int
static
val
MenuItem_android_titleCondensed
:
Int
static
val
MenuItem_android_visible
:
Int
static
val
MenuItem_contentDescription
:
Int
static
val
MenuItem_iconTint
:
Int
static
val
MenuItem_iconTintMode
:
Int
static
val
MenuItem_numericModifiers
:
Int
static
val
MenuItem_showAsAction
:
Int
static
val
MenuItem_tooltipText
:
Int
static
val
MenuView
:
IntArray
static
val
MenuView_android_headerBackground
:
Int
static
val
MenuView_android_horizontalDivider
:
Int
static
val
MenuView_android_itemBackground
:
Int
static
val
MenuView_android_itemIconDisabledAlpha
:
Int
static
val
MenuView_android_itemTextAppearance
:
Int
static
val
MenuView_android_verticalDivider
:
Int
static
val
MenuView_android_windowAnimationStyle
:
Int
static
val
MenuView_preserveIconSpacing
:
Int
static
val
MenuView_subMenuArrow
:
Int
static
val
PopupWindow
:
IntArray
static
val
PopupWindowBackgroundState
:
IntArray
static
val
PopupWindowBackgroundState_state_above_anchor
:
Int
static
val
PopupWindow_android_popupAnimationStyle
:
Int
static
val
PopupWindow_android_popupBackground
:
Int
static
val
PopupWindow_overlapAnchor
:
Int
static
val
RecycleListView
:
IntArray
static
val
RecycleListView_paddingBottomNoButtons
:
Int
static
val
RecycleListView_paddingTopNoTitle
:
Int
static
val
SearchView
:
IntArray
static
val
SearchView_android_focusable
:
Int
static
val
SearchView_android_imeOptions
:
Int
static
val
SearchView_android_inputType
:
Int
static
val
SearchView_android_maxWidth
:
Int
static
val
SearchView_closeIcon
:
Int
static
val
SearchView_commitIcon
:
Int
static
val
SearchView_defaultQueryHint
:
Int
static
val
SearchView_goIcon
:
Int
static
val
SearchView_iconifiedByDefault
:
Int
static
val
SearchView_layout
:
Int
static
val
SearchView_queryBackground
:
Int
static
val
SearchView_queryHint
:
Int
static
val
SearchView_searchHintIcon
:
Int
static
val
SearchView_searchIcon
:
Int
static
val
SearchView_submitBackground
:
Int
static
val
SearchView_suggestionRowLayout
:
Int
static
val
SearchView_voiceIcon
:
Int
static
val
Spinner
:
IntArray
static
val
Spinner_android_dropDownWidth
:
Int
static
val
Spinner_android_entries
:
Int
static
val
Spinner_android_popupBackground
:
Int
static
val
Spinner_android_prompt
:
Int
static
val
Spinner_popupTheme
:
Int
static
val
StateListDrawable
:
IntArray
static
val
StateListDrawableItem
:
IntArray
static
val
StateListDrawableItem_android_drawable
:
Int
static
val
StateListDrawable_android_constantSize
:
Int
static
val
StateListDrawable_android_dither
:
Int
static
val
StateListDrawable_android_enterFadeDuration
:
Int
static
val
StateListDrawable_android_exitFadeDuration
:
Int
static
val
StateListDrawable_android_variablePadding
:
Int
static
val
StateListDrawable_android_visible
:
Int
static
val
SwitchCompat
:
IntArray
static
val
SwitchCompat_android_textOff
:
Int
static
val
SwitchCompat_android_textOn
:
Int
static
val
SwitchCompat_android_thumb
:
Int
static
val
SwitchCompat_showText
:
Int
static
val
SwitchCompat_splitTrack
:
Int
static
val
SwitchCompat_switchMinWidth
:
Int
static
val
SwitchCompat_switchPadding
:
Int
static
val
SwitchCompat_switchTextAppearance
:
Int
static
val
SwitchCompat_thumbTextPadding
:
Int
static
val
SwitchCompat_thumbTint
:
Int
static
val
SwitchCompat_thumbTintMode
:
Int
static
val
SwitchCompat_track
:
Int
static
val
SwitchCompat_trackTint
:
Int
static
val
SwitchCompat_trackTintMode
:
Int
static
val
TextAppearance
:
IntArray
static
val
TextAppearance_android_fontFamily
:
Int
static
val
TextAppearance_android_shadowColor
:
Int
static
val
TextAppearance_android_shadowDx
:
Int
static
val
TextAppearance_android_shadowDy
:
Int
static
val
TextAppearance_android_shadowRadius
:
Int
static
val
TextAppearance_android_textColor
:
Int
static
val
TextAppearance_android_textColorHint
:
Int
static
val
TextAppearance_android_textColorLink
:
Int
static
val
TextAppearance_android_textSize
:
Int
static
val
TextAppearance_android_textStyle
:
Int
static
val
TextAppearance_android_typeface
:
Int
static
val
TextAppearance_fontFamily
:
Int
static
val
TextAppearance_textAllCaps
:
Int
static
val
Toolbar
:
IntArray
static
val
Toolbar_android_gravity
:
Int
static
val
Toolbar_android_minHeight
:
Int
static
val
Toolbar_buttonGravity
:
Int
static
val
Toolbar_collapseContentDescription
:
Int
static
val
Toolbar_collapseIcon
:
Int
static
val
Toolbar_contentInsetEnd
:
Int
static
val
Toolbar_contentInsetEndWithActions
:
Int
static
val
Toolbar_contentInsetLeft
:
Int
static
val
Toolbar_contentInsetRight
:
Int
static
val
Toolbar_contentInsetStart
:
Int
static
val
Toolbar_contentInsetStartWithNavigation
:
Int
static
val
Toolbar_logo
:
Int
static
val
Toolbar_logoDescription
:
Int
static
val
Toolbar_maxButtonHeight
:
Int
static
val
Toolbar_navigationContentDescription
:
Int
static
val
Toolbar_navigationIcon
:
Int
static
val
Toolbar_popupTheme
:
Int
static
val
Toolbar_subtitle
:
Int
static
val
Toolbar_subtitleTextAppearance
:
Int
static
val
Toolbar_subtitleTextColor
:
Int
static
val
Toolbar_title
:
Int
static
val
Toolbar_titleMargin
:
Int
static
val
Toolbar_titleMarginBottom
:
Int
static
val
Toolbar_titleMarginEnd
:
Int
static
val
Toolbar_titleMarginStart
:
Int
static
val
Toolbar_titleMarginTop
:
Int
static
val
Toolbar_titleMargins
:
Int
static
val
Toolbar_titleTextAppearance
:
Int
static
val
Toolbar_titleTextColor
:
Int
static
val
View
:
IntArray
static
val
ViewBackgroundHelper
:
IntArray
static
val
ViewBackgroundHelper_android_background
:
Int
static
val
ViewBackgroundHelper_backgroundTint
:
Int
static
val
ViewBackgroundHelper_backgroundTintMode
:
Int
static
val
ViewStubCompat
:
IntArray
static
val
ViewStubCompat_android_id
:
Int
static
val
ViewStubCompat_android_inflatedId
:
Int
static
val
ViewStubCompat_android_layout
:
Int
static
val
View_android_focusable
:
Int
static
val
View_android_theme
:
Int
static
val
View_paddingEnd
:
Int
static
val
View_paddingStart
:
Int
static
val
View_theme
:
Int
class
R
Module Contents
class
anim
Module Contents
static
val
abc_fade_in
:
Int
static
val
abc_fade_out
:
Int
static
val
abc_grow_fade_in_from_bottom
:
Int
static
val
abc_popup_enter
:
Int
static
val
abc_popup_exit
:
Int
static
val
abc_shrink_fade_out_from_bottom
:
Int
static
val
abc_slide_in_bottom
:
Int
static
val
abc_slide_in_top
:
Int
static
val
abc_slide_out_bottom
:
Int
static
val
abc_slide_out_top
:
Int
static
val
abc_tooltip_enter
:
Int
static
val
abc_tooltip_exit
:
Int
class
attr
Module Contents
static
val
actionBarDivider
:
Int
static
val
actionBarItemBackground
:
Int
static
val
actionBarPopupTheme
:
Int
static
val
actionBarSize
:
Int
static
val
actionBarSplitStyle
:
Int
static
val
actionBarStyle
:
Int
static
val
actionBarTabBarStyle
:
Int
static
val
actionBarTabStyle
:
Int
static
val
actionBarTabTextStyle
:
Int
static
val
actionBarTheme
:
Int
static
val
actionBarWidgetTheme
:
Int
static
val
actionButtonStyle
:
Int
static
val
actionDropDownStyle
:
Int
static
val
actionLayout
:
Int
static
val
actionMenuTextAppearance
:
Int
static
val
actionMenuTextColor
:
Int
static
val
actionModeBackground
:
Int
static
val
actionModeCloseButtonStyle
:
Int
static
val
actionModeCloseDrawable
:
Int
static
val
actionModeCopyDrawable
:
Int
static
val
actionModeCutDrawable
:
Int
static
val
actionModeFindDrawable
:
Int
static
val
actionModePasteDrawable
:
Int
static
val
actionModePopupWindowStyle
:
Int
static
val
actionModeSelectAllDrawable
:
Int
static
val
actionModeShareDrawable
:
Int
static
val
actionModeSplitBackground
:
Int
static
val
actionModeStyle
:
Int
static
val
actionModeWebSearchDrawable
:
Int
static
val
actionOverflowButtonStyle
:
Int
static
val
actionOverflowMenuStyle
:
Int
static
val
actionProviderClass
:
Int
static
val
actionViewClass
:
Int
static
val
activityChooserViewStyle
:
Int
static
val
alertDialogButtonGroupStyle
:
Int
static
val
alertDialogCenterButtons
:
Int
static
val
alertDialogStyle
:
Int
static
val
alertDialogTheme
:
Int
static
val
allowStacking
:
Int
static
val
alpha
:
Int
static
val
alphabeticModifiers
:
Int
static
val
arrowHeadLength
:
Int
static
val
arrowShaftLength
:
Int
static
val
autoCompleteTextViewStyle
:
Int
static
val
autoSizeMaxTextSize
:
Int
static
val
autoSizeMinTextSize
:
Int
static
val
autoSizePresetSizes
:
Int
static
val
autoSizeStepGranularity
:
Int
static
val
autoSizeTextType
:
Int
static
val
background
:
Int
static
val
backgroundSplit
:
Int
static
val
backgroundStacked
:
Int
static
val
backgroundTint
:
Int
static
val
backgroundTintMode
:
Int
static
val
barLength
:
Int
static
val
borderlessButtonStyle
:
Int
static
val
buttonBarButtonStyle
:
Int
static
val
buttonBarNegativeButtonStyle
:
Int
static
val
buttonBarNeutralButtonStyle
:
Int
static
val
buttonBarPositiveButtonStyle
:
Int
static
val
buttonBarStyle
:
Int
static
val
buttonGravity
:
Int
static
val
buttonIconDimen
:
Int
static
val
buttonPanelSideLayout
:
Int
static
val
buttonStyle
:
Int
static
val
buttonStyleSmall
:
Int
static
val
buttonTint
:
Int
static
val
buttonTintMode
:
Int
static
val
checkboxStyle
:
Int
static
val
checkedTextViewStyle
:
Int
static
val
closeIcon
:
Int
static
val
closeItemLayout
:
Int
static
val
collapseContentDescription
:
Int
static
val
collapseIcon
:
Int
static
val
color
:
Int
static
val
colorAccent
:
Int
static
val
colorBackgroundFloating
:
Int
static
val
colorButtonNormal
:
Int
static
val
colorControlActivated
:
Int
static
val
colorControlHighlight
:
Int
static
val
colorControlNormal
:
Int
static
val
colorError
:
Int
static
val
colorPrimary
:
Int
static
val
colorPrimaryDark
:
Int
static
val
colorSwitchThumbNormal
:
Int
static
val
commitIcon
:
Int
static
val
contentDescription
:
Int
static
val
contentInsetEnd
:
Int
static
val
contentInsetEndWithActions
:
Int
static
val
contentInsetLeft
:
Int
static
val
contentInsetRight
:
Int
static
val
contentInsetStart
:
Int
static
val
contentInsetStartWithNavigation
:
Int
static
val
controlBackground
:
Int
static
val
coordinatorLayoutStyle
:
Int
static
val
customNavigationLayout
:
Int
static
val
defaultQueryHint
:
Int
static
val
dialogCornerRadius
:
Int
static
val
dialogPreferredPadding
:
Int
static
val
dialogTheme
:
Int
static
val
displayOptions
:
Int
static
val
divider
:
Int
static
val
dividerHorizontal
:
Int
static
val
dividerPadding
:
Int
static
val
dividerVertical
:
Int
static
val
drawableSize
:
Int
static
val
drawerArrowStyle
:
Int
static
val
dropDownListViewStyle
:
Int
static
val
dropdownListPreferredItemHeight
:
Int
static
val
editTextBackground
:
Int
static
val
editTextColor
:
Int
static
val
editTextStyle
:
Int
static
val
elevation
:
Int
static
val
expandActivityOverflowButtonDrawable
:
Int
static
val
firstBaselineToTopHeight
:
Int
static
val
font
:
Int
static
val
fontFamily
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
gapBetweenBars
:
Int
static
val
goIcon
:
Int
static
val
height
:
Int
static
val
hideOnContentScroll
:
Int
static
val
homeAsUpIndicator
:
Int
static
val
homeLayout
:
Int
static
val
icon
:
Int
static
val
iconTint
:
Int
static
val
iconTintMode
:
Int
static
val
iconifiedByDefault
:
Int
static
val
imageButtonStyle
:
Int
static
val
indeterminateProgressStyle
:
Int
static
val
initialActivityCount
:
Int
static
val
isLightTheme
:
Int
static
val
itemPadding
:
Int
static
val
keylines
:
Int
static
val
lastBaselineToBottomHeight
:
Int
static
val
layout
:
Int
static
val
layout_anchor
:
Int
static
val
layout_anchorGravity
:
Int
static
val
layout_behavior
:
Int
static
val
layout_dodgeInsetEdges
:
Int
static
val
layout_insetEdge
:
Int
static
val
layout_keyline
:
Int
static
val
lineHeight
:
Int
static
val
listChoiceBackgroundIndicator
:
Int
static
val
listDividerAlertDialog
:
Int
static
val
listItemLayout
:
Int
static
val
listLayout
:
Int
static
val
listMenuViewStyle
:
Int
static
val
listPopupWindowStyle
:
Int
static
val
listPreferredItemHeight
:
Int
static
val
listPreferredItemHeightLarge
:
Int
static
val
listPreferredItemHeightSmall
:
Int
static
val
listPreferredItemPaddingLeft
:
Int
static
val
listPreferredItemPaddingRight
:
Int
static
val
logo
:
Int
static
val
logoDescription
:
Int
static
val
maxButtonHeight
:
Int
static
val
measureWithLargestChild
:
Int
static
val
multiChoiceItemLayout
:
Int
static
val
navigationContentDescription
:
Int
static
val
navigationIcon
:
Int
static
val
navigationMode
:
Int
static
val
numericModifiers
:
Int
static
val
overlapAnchor
:
Int
static
val
paddingBottomNoButtons
:
Int
static
val
paddingEnd
:
Int
static
val
paddingStart
:
Int
static
val
paddingTopNoTitle
:
Int
static
val
panelBackground
:
Int
static
val
panelMenuListTheme
:
Int
static
val
panelMenuListWidth
:
Int
static
val
popupMenuStyle
:
Int
static
val
popupTheme
:
Int
static
val
popupWindowStyle
:
Int
static
val
preserveIconSpacing
:
Int
static
val
progressBarPadding
:
Int
static
val
progressBarStyle
:
Int
static
val
queryBackground
:
Int
static
val
queryHint
:
Int
static
val
radioButtonStyle
:
Int
static
val
ratingBarStyle
:
Int
static
val
ratingBarStyleIndicator
:
Int
static
val
ratingBarStyleSmall
:
Int
static
val
searchHintIcon
:
Int
static
val
searchIcon
:
Int
static
val
searchViewStyle
:
Int
static
val
seekBarStyle
:
Int
static
val
selectableItemBackground
:
Int
static
val
selectableItemBackgroundBorderless
:
Int
static
val
showAsAction
:
Int
static
val
showDividers
:
Int
static
val
showText
:
Int
static
val
showTitle
:
Int
static
val
singleChoiceItemLayout
:
Int
static
val
spinBars
:
Int
static
val
spinnerDropDownItemStyle
:
Int
static
val
spinnerStyle
:
Int
static
val
splitTrack
:
Int
static
val
srcCompat
:
Int
static
val
state_above_anchor
:
Int
static
val
statusBarBackground
:
Int
static
val
subMenuArrow
:
Int
static
val
submitBackground
:
Int
static
val
subtitle
:
Int
static
val
subtitleTextAppearance
:
Int
static
val
subtitleTextColor
:
Int
static
val
subtitleTextStyle
:
Int
static
val
suggestionRowLayout
:
Int
static
val
switchMinWidth
:
Int
static
val
switchPadding
:
Int
static
val
switchStyle
:
Int
static
val
switchTextAppearance
:
Int
static
val
textAllCaps
:
Int
static
val
textAppearanceLargePopupMenu
:
Int
static
val
textAppearanceListItem
:
Int
static
val
textAppearanceListItemSecondary
:
Int
static
val
textAppearanceListItemSmall
:
Int
static
val
textAppearancePopupMenuHeader
:
Int
static
val
textAppearanceSearchResultSubtitle
:
Int
static
val
textAppearanceSearchResultTitle
:
Int
static
val
textAppearanceSmallPopupMenu
:
Int
static
val
textColorAlertDialogListItem
:
Int
static
val
textColorSearchUrl
:
Int
static
val
theme
:
Int
static
val
thickness
:
Int
static
val
thumbTextPadding
:
Int
static
val
thumbTint
:
Int
static
val
thumbTintMode
:
Int
static
val
tickMark
:
Int
static
val
tickMarkTint
:
Int
static
val
tickMarkTintMode
:
Int
static
val
tint
:
Int
static
val
tintMode
:
Int
static
val
title
:
Int
static
val
titleMargin
:
Int
static
val
titleMarginBottom
:
Int
static
val
titleMarginEnd
:
Int
static
val
titleMarginStart
:
Int
static
val
titleMarginTop
:
Int
static
val
titleMargins
:
Int
static
val
titleTextAppearance
:
Int
static
val
titleTextColor
:
Int
static
val
titleTextStyle
:
Int
static
val
toolbarNavigationButtonStyle
:
Int
static
val
toolbarStyle
:
Int
static
val
tooltipForegroundColor
:
Int
static
val
tooltipFrameBackground
:
Int
static
val
tooltipText
:
Int
static
val
track
:
Int
static
val
trackTint
:
Int
static
val
trackTintMode
:
Int
static
val
ttcIndex
:
Int
static
val
viewInflaterClass
:
Int
static
val
voiceIcon
:
Int
static
val
windowActionBar
:
Int
static
val
windowActionBarOverlay
:
Int
static
val
windowActionModeOverlay
:
Int
static
val
windowFixedHeightMajor
:
Int
static
val
windowFixedHeightMinor
:
Int
static
val
windowFixedWidthMajor
:
Int
static
val
windowFixedWidthMinor
:
Int
static
val
windowMinWidthMajor
:
Int
static
val
windowMinWidthMinor
:
Int
static
val
windowNoTitle
:
Int
class
bool
Module Contents
static
val
abc_action_bar_embed_tabs
:
Int
static
val
abc_allow_stacked_button_bar
:
Int
static
val
abc_config_actionMenuItemAllCaps
:
Int
class
color
Module Contents
static
val
abc_background_cache_hint_selector_material_dark
:
Int
static
val
abc_background_cache_hint_selector_material_light
:
Int
static
val
abc_btn_colored_borderless_text_material
:
Int
static
val
abc_btn_colored_text_material
:
Int
static
val
abc_color_highlight_material
:
Int
static
val
abc_hint_foreground_material_dark
:
Int
static
val
abc_hint_foreground_material_light
:
Int
static
val
abc_input_method_navigation_guard
:
Int
static
val
abc_primary_text_disable_only_material_dark
:
Int
static
val
abc_primary_text_disable_only_material_light
:
Int
static
val
abc_primary_text_material_dark
:
Int
static
val
abc_primary_text_material_light
:
Int
static
val
abc_search_url_text
:
Int
static
val
abc_search_url_text_normal
:
Int
static
val
abc_search_url_text_pressed
:
Int
static
val
abc_search_url_text_selected
:
Int
static
val
abc_secondary_text_material_dark
:
Int
static
val
abc_secondary_text_material_light
:
Int
static
val
abc_tint_btn_checkable
:
Int
static
val
abc_tint_default
:
Int
static
val
abc_tint_edittext
:
Int
static
val
abc_tint_seek_thumb
:
Int
static
val
abc_tint_spinner
:
Int
static
val
abc_tint_switch_track
:
Int
static
val
accent_material_dark
:
Int
static
val
accent_material_light
:
Int
static
val
background_floating_material_dark
:
Int
static
val
background_floating_material_light
:
Int
static
val
background_material_dark
:
Int
static
val
background_material_light
:
Int
static
val
bright_foreground_disabled_material_dark
:
Int
static
val
bright_foreground_disabled_material_light
:
Int
static
val
bright_foreground_inverse_material_dark
:
Int
static
val
bright_foreground_inverse_material_light
:
Int
static
val
bright_foreground_material_dark
:
Int
static
val
bright_foreground_material_light
:
Int
static
val
button_material_dark
:
Int
static
val
button_material_light
:
Int
static
val
dim_foreground_disabled_material_dark
:
Int
static
val
dim_foreground_disabled_material_light
:
Int
static
val
dim_foreground_material_dark
:
Int
static
val
dim_foreground_material_light
:
Int
static
val
error_color_material_dark
:
Int
static
val
error_color_material_light
:
Int
static
val
foreground_material_dark
:
Int
static
val
foreground_material_light
:
Int
static
val
highlighted_text_material_dark
:
Int
static
val
highlighted_text_material_light
:
Int
static
val
material_blue_grey_800
:
Int
static
val
material_blue_grey_900
:
Int
static
val
material_blue_grey_950
:
Int
static
val
material_deep_teal_200
:
Int
static
val
material_deep_teal_500
:
Int
static
val
material_grey_100
:
Int
static
val
material_grey_300
:
Int
static
val
material_grey_50
:
Int
static
val
material_grey_600
:
Int
static
val
material_grey_800
:
Int
static
val
material_grey_850
:
Int
static
val
material_grey_900
:
Int
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
primary_dark_material_dark
:
Int
static
val
primary_dark_material_light
:
Int
static
val
primary_material_dark
:
Int
static
val
primary_material_light
:
Int
static
val
primary_text_default_material_dark
:
Int
static
val
primary_text_default_material_light
:
Int
static
val
primary_text_disabled_material_dark
:
Int
static
val
primary_text_disabled_material_light
:
Int
static
val
ripple_material_dark
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_dark
:
Int
static
val
secondary_text_default_material_light
:
Int
static
val
secondary_text_disabled_material_dark
:
Int
static
val
secondary_text_disabled_material_light
:
Int
static
val
switch_thumb_disabled_material_dark
:
Int
static
val
switch_thumb_disabled_material_light
:
Int
static
val
switch_thumb_material_dark
:
Int
static
val
switch_thumb_material_light
:
Int
static
val
switch_thumb_normal_material_dark
:
Int
static
val
switch_thumb_normal_material_light
:
Int
static
val
tooltip_background_dark
:
Int
static
val
tooltip_background_light
:
Int
class
dimen
Module Contents
static
val
abc_action_bar_content_inset_material
:
Int
static
val
abc_action_bar_content_inset_with_nav
:
Int
static
val
abc_action_bar_default_height_material
:
Int
static
val
abc_action_bar_default_padding_end_material
:
Int
static
val
abc_action_bar_default_padding_start_material
:
Int
static
val
abc_action_bar_elevation_material
:
Int
static
val
abc_action_bar_icon_vertical_padding_material
:
Int
static
val
abc_action_bar_overflow_padding_end_material
:
Int
static
val
abc_action_bar_overflow_padding_start_material
:
Int
static
val
abc_action_bar_stacked_max_height
:
Int
static
val
abc_action_bar_stacked_tab_max_width
:
Int
static
val
abc_action_bar_subtitle_bottom_margin_material
:
Int
static
val
abc_action_bar_subtitle_top_margin_material
:
Int
static
val
abc_action_button_min_height_material
:
Int
static
val
abc_action_button_min_width_material
:
Int
static
val
abc_action_button_min_width_overflow_material
:
Int
static
val
abc_alert_dialog_button_bar_height
:
Int
static
val
abc_alert_dialog_button_dimen
:
Int
static
val
abc_button_inset_horizontal_material
:
Int
static
val
abc_button_inset_vertical_material
:
Int
static
val
abc_button_padding_horizontal_material
:
Int
static
val
abc_button_padding_vertical_material
:
Int
static
val
abc_cascading_menus_min_smallest_width
:
Int
static
val
abc_config_prefDialogWidth
:
Int
static
val
abc_control_corner_material
:
Int
static
val
abc_control_inset_material
:
Int
static
val
abc_control_padding_material
:
Int
static
val
abc_dialog_corner_radius_material
:
Int
static
val
abc_dialog_fixed_height_major
:
Int
static
val
abc_dialog_fixed_height_minor
:
Int
static
val
abc_dialog_fixed_width_major
:
Int
static
val
abc_dialog_fixed_width_minor
:
Int
static
val
abc_dialog_list_padding_bottom_no_buttons
:
Int
static
val
abc_dialog_list_padding_top_no_title
:
Int
static
val
abc_dialog_min_width_major
:
Int
static
val
abc_dialog_min_width_minor
:
Int
static
val
abc_dialog_padding_material
:
Int
static
val
abc_dialog_padding_top_material
:
Int
static
val
abc_dialog_title_divider_material
:
Int
static
val
abc_disabled_alpha_material_dark
:
Int
static
val
abc_disabled_alpha_material_light
:
Int
static
val
abc_dropdownitem_icon_width
:
Int
static
val
abc_dropdownitem_text_padding_left
:
Int
static
val
abc_dropdownitem_text_padding_right
:
Int
static
val
abc_edit_text_inset_bottom_material
:
Int
static
val
abc_edit_text_inset_horizontal_material
:
Int
static
val
abc_edit_text_inset_top_material
:
Int
static
val
abc_floating_window_z
:
Int
static
val
abc_list_item_padding_horizontal_material
:
Int
static
val
abc_panel_menu_list_width
:
Int
static
val
abc_progress_bar_height_material
:
Int
static
val
abc_search_view_preferred_height
:
Int
static
val
abc_search_view_preferred_width
:
Int
static
val
abc_seekbar_track_background_height_material
:
Int
static
val
abc_seekbar_track_progress_height_material
:
Int
static
val
abc_select_dialog_padding_start_material
:
Int
static
val
abc_switch_padding
:
Int
static
val
abc_text_size_body_1_material
:
Int
static
val
abc_text_size_body_2_material
:
Int
static
val
abc_text_size_button_material
:
Int
static
val
abc_text_size_caption_material
:
Int
static
val
abc_text_size_display_1_material
:
Int
static
val
abc_text_size_display_2_material
:
Int
static
val
abc_text_size_display_3_material
:
Int
static
val
abc_text_size_display_4_material
:
Int
static
val
abc_text_size_headline_material
:
Int
static
val
abc_text_size_large_material
:
Int
static
val
abc_text_size_medium_material
:
Int
static
val
abc_text_size_menu_header_material
:
Int
static
val
abc_text_size_menu_material
:
Int
static
val
abc_text_size_small_material
:
Int
static
val
abc_text_size_subhead_material
:
Int
static
val
abc_text_size_subtitle_material_toolbar
:
Int
static
val
abc_text_size_title_material
:
Int
static
val
abc_text_size_title_material_toolbar
:
Int
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
disabled_alpha_material_dark
:
Int
static
val
disabled_alpha_material_light
:
Int
static
val
highlight_alpha_material_colored
:
Int
static
val
highlight_alpha_material_dark
:
Int
static
val
highlight_alpha_material_light
:
Int
static
val
hint_alpha_material_dark
:
Int
static
val
hint_alpha_material_light
:
Int
static
val
hint_pressed_alpha_material_dark
:
Int
static
val
hint_pressed_alpha_material_light
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
static
val
tooltip_corner_radius
:
Int
static
val
tooltip_horizontal_padding
:
Int
static
val
tooltip_margin
:
Int
static
val
tooltip_precise_anchor_extra_offset
:
Int
static
val
tooltip_precise_anchor_threshold
:
Int
static
val
tooltip_vertical_padding
:
Int
static
val
tooltip_y_offset_non_touch
:
Int
static
val
tooltip_y_offset_touch
:
Int
class
drawable
Module Contents
static
val
abc_ab_share_pack_mtrl_alpha
:
Int
static
val
abc_action_bar_item_background_material
:
Int
static
val
abc_btn_borderless_material
:
Int
static
val
abc_btn_check_material
:
Int
static
val
abc_btn_check_to_on_mtrl_000
:
Int
static
val
abc_btn_check_to_on_mtrl_015
:
Int
static
val
abc_btn_colored_material
:
Int
static
val
abc_btn_default_mtrl_shape
:
Int
static
val
abc_btn_radio_material
:
Int
static
val
abc_btn_radio_to_on_mtrl_000
:
Int
static
val
abc_btn_radio_to_on_mtrl_015
:
Int
static
val
abc_btn_switch_to_on_mtrl_00001
:
Int
static
val
abc_btn_switch_to_on_mtrl_00012
:
Int
static
val
abc_cab_background_internal_bg
:
Int
static
val
abc_cab_background_top_material
:
Int
static
val
abc_cab_background_top_mtrl_alpha
:
Int
static
val
abc_control_background_material
:
Int
static
val
abc_dialog_material_background
:
Int
static
val
abc_edit_text_material
:
Int
static
val
abc_ic_ab_back_material
:
Int
static
val
abc_ic_arrow_drop_right_black_24dp
:
Int
static
val
abc_ic_clear_material
:
Int
static
val
abc_ic_commit_search_api_mtrl_alpha
:
Int
static
val
abc_ic_go_search_api_material
:
Int
static
val
abc_ic_menu_copy_mtrl_am_alpha
:
Int
static
val
abc_ic_menu_cut_mtrl_alpha
:
Int
static
val
abc_ic_menu_overflow_material
:
Int
static
val
abc_ic_menu_paste_mtrl_am_alpha
:
Int
static
val
abc_ic_menu_selectall_mtrl_alpha
:
Int
static
val
abc_ic_menu_share_mtrl_alpha
:
Int
static
val
abc_ic_search_api_material
:
Int
static
val
abc_ic_star_black_16dp
:
Int
static
val
abc_ic_star_black_36dp
:
Int
static
val
abc_ic_star_black_48dp
:
Int
static
val
abc_ic_star_half_black_16dp
:
Int
static
val
abc_ic_star_half_black_36dp
:
Int
static
val
abc_ic_star_half_black_48dp
:
Int
static
val
abc_ic_voice_search_api_material
:
Int
static
val
abc_item_background_holo_dark
:
Int
static
val
abc_item_background_holo_light
:
Int
static
val
abc_list_divider_material
:
Int
static
val
abc_list_divider_mtrl_alpha
:
Int
static
val
abc_list_focused_holo
:
Int
static
val
abc_list_longpressed_holo
:
Int
static
val
abc_list_pressed_holo_dark
:
Int
static
val
abc_list_pressed_holo_light
:
Int
static
val
abc_list_selector_background_transition_holo_dark
:
Int
static
val
abc_list_selector_background_transition_holo_light
:
Int
static
val
abc_list_selector_disabled_holo_dark
:
Int
static
val
abc_list_selector_disabled_holo_light
:
Int
static
val
abc_list_selector_holo_dark
:
Int
static
val
abc_list_selector_holo_light
:
Int
static
val
abc_menu_hardkey_panel_mtrl_mult
:
Int
static
val
abc_popup_background_mtrl_mult
:
Int
static
val
abc_ratingbar_indicator_material
:
Int
static
val
abc_ratingbar_material
:
Int
static
val
abc_ratingbar_small_material
:
Int
static
val
abc_scrubber_control_off_mtrl_alpha
:
Int
static
val
abc_scrubber_control_to_pressed_mtrl_000
:
Int
static
val
abc_scrubber_control_to_pressed_mtrl_005
:
Int
static
val
abc_scrubber_primary_mtrl_alpha
:
Int
static
val
abc_scrubber_track_mtrl_alpha
:
Int
static
val
abc_seekbar_thumb_material
:
Int
static
val
abc_seekbar_tick_mark_material
:
Int
static
val
abc_seekbar_track_material
:
Int
static
val
abc_spinner_mtrl_am_alpha
:
Int
static
val
abc_spinner_textfield_background_material
:
Int
static
val
abc_switch_thumb_material
:
Int
static
val
abc_switch_track_mtrl_alpha
:
Int
static
val
abc_tab_indicator_material
:
Int
static
val
abc_tab_indicator_mtrl_alpha
:
Int
static
val
abc_text_cursor_material
:
Int
static
val
abc_text_select_handle_left_mtrl_dark
:
Int
static
val
abc_text_select_handle_left_mtrl_light
:
Int
static
val
abc_text_select_handle_middle_mtrl_dark
:
Int
static
val
abc_text_select_handle_middle_mtrl_light
:
Int
static
val
abc_text_select_handle_right_mtrl_dark
:
Int
static
val
abc_text_select_handle_right_mtrl_light
:
Int
static
val
abc_textfield_activated_mtrl_alpha
:
Int
static
val
abc_textfield_default_mtrl_alpha
:
Int
static
val
abc_textfield_search_activated_mtrl_alpha
:
Int
static
val
abc_textfield_search_default_mtrl_alpha
:
Int
static
val
abc_textfield_search_material
:
Int
static
val
abc_vector_test
:
Int
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
static
val
tooltip_frame_dark
:
Int
static
val
tooltip_frame_light
:
Int
class
id
Module Contents
static
val
action_bar
:
Int
static
val
action_bar_activity_content
:
Int
static
val
action_bar_container
:
Int
static
val
action_bar_root
:
Int
static
val
action_bar_spinner
:
Int
static
val
action_bar_subtitle
:
Int
static
val
action_bar_title
:
Int
static
val
action_container
:
Int
static
val
action_context_bar
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_menu_divider
:
Int
static
val
action_menu_presenter
:
Int
static
val
action_mode_bar
:
Int
static
val
action_mode_bar_stub
:
Int
static
val
action_mode_close_button
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
activity_chooser_view_content
:
Int
static
val
add
:
Int
static
val
alertTitle
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
bottom
:
Int
static
val
buttonPanel
:
Int
static
val
checkbox
:
Int
static
val
chronometer
:
Int
static
val
content
:
Int
static
val
contentPanel
:
Int
static
val
custom
:
Int
static
val
customPanel
:
Int
static
val
decor_content_parent
:
Int
static
val
default_activity_button
:
Int
static
val
edit_query
:
Int
static
val
end
:
Int
static
val
expand_activities_button
:
Int
static
val
expanded_menu
:
Int
static
val
forever
:
Int
static
val
group_divider
:
Int
static
val
home
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
image
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
left
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
listMode
:
Int
static
val
list_item
:
Int
static
val
message
:
Int
static
val
multiply
:
Int
static
val
none
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
parentPanel
:
Int
static
val
progress_circular
:
Int
static
val
progress_horizontal
:
Int
static
val
radio
:
Int
static
val
right
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
screen
:
Int
static
val
scrollIndicatorDown
:
Int
static
val
scrollIndicatorUp
:
Int
static
val
scrollView
:
Int
static
val
search_badge
:
Int
static
val
search_bar
:
Int
static
val
search_button
:
Int
static
val
search_close_btn
:
Int
static
val
search_edit_frame
:
Int
static
val
search_go_btn
:
Int
static
val
search_mag_icon
:
Int
static
val
search_plate
:
Int
static
val
search_src_text
:
Int
static
val
search_voice_btn
:
Int
static
val
select_dialog_listview
:
Int
static
val
shortcut
:
Int
static
val
spacer
:
Int
static
val
split_action_bar
:
Int
static
val
src_atop
:
Int
static
val
src_in
:
Int
static
val
src_over
:
Int
static
val
start
:
Int
static
val
submenuarrow
:
Int
static
val
submit_area
:
Int
static
val
tabMode
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
textSpacerNoButtons
:
Int
static
val
textSpacerNoTitle
:
Int
static
val
time
:
Int
static
val
title
:
Int
static
val
titleDividerNoCustom
:
Int
static
val
title_template
:
Int
static
val
top
:
Int
static
val
topPanel
:
Int
static
val
uniform
:
Int
static
val
up
:
Int
static
val
wrap_content
:
Int
class
integer
Module Contents
static
val
abc_config_activityDefaultDur
:
Int
static
val
abc_config_activityShortDur
:
Int
static
val
cancel_button_image_alpha
:
Int
static
val
config_tooltipAnimTime
:
Int
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
abc_action_bar_title_item
:
Int
static
val
abc_action_bar_up_container
:
Int
static
val
abc_action_menu_item_layout
:
Int
static
val
abc_action_menu_layout
:
Int
static
val
abc_action_mode_bar
:
Int
static
val
abc_action_mode_close_item_material
:
Int
static
val
abc_activity_chooser_view
:
Int
static
val
abc_activity_chooser_view_list_item
:
Int
static
val
abc_alert_dialog_button_bar_material
:
Int
static
val
abc_alert_dialog_material
:
Int
static
val
abc_alert_dialog_title_material
:
Int
static
val
abc_cascading_menu_item_layout
:
Int
static
val
abc_dialog_title_material
:
Int
static
val
abc_expanded_menu_layout
:
Int
static
val
abc_list_menu_item_checkbox
:
Int
static
val
abc_list_menu_item_icon
:
Int
static
val
abc_list_menu_item_layout
:
Int
static
val
abc_list_menu_item_radio
:
Int
static
val
abc_popup_menu_header_item_layout
:
Int
static
val
abc_popup_menu_item_layout
:
Int
static
val
abc_screen_content_include
:
Int
static
val
abc_screen_simple
:
Int
static
val
abc_screen_simple_overlay_action_mode
:
Int
static
val
abc_screen_toolbar
:
Int
static
val
abc_search_dropdown_item_icons_2line
:
Int
static
val
abc_search_view
:
Int
static
val
abc_select_dialog_material
:
Int
static
val
abc_tooltip
:
Int
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
static
val
select_dialog_item_material
:
Int
static
val
select_dialog_multichoice_material
:
Int
static
val
select_dialog_singlechoice_material
:
Int
static
val
support_simple_spinner_dropdown_item
:
Int
class
string
Module Contents
static
val
abc_action_bar_home_description
:
Int
static
val
abc_action_bar_up_description
:
Int
static
val
abc_action_menu_overflow_description
:
Int
static
val
abc_action_mode_done
:
Int
static
val
abc_activity_chooser_view_see_all
:
Int
static
val
abc_activitychooserview_choose_application
:
Int
static
val
abc_capital_off
:
Int
static
val
abc_capital_on
:
Int
static
val
abc_font_family_body_1_material
:
Int
static
val
abc_font_family_body_2_material
:
Int
static
val
abc_font_family_button_material
:
Int
static
val
abc_font_family_caption_material
:
Int
static
val
abc_font_family_display_1_material
:
Int
static
val
abc_font_family_display_2_material
:
Int
static
val
abc_font_family_display_3_material
:
Int
static
val
abc_font_family_display_4_material
:
Int
static
val
abc_font_family_headline_material
:
Int
static
val
abc_font_family_menu_material
:
Int
static
val
abc_font_family_subhead_material
:
Int
static
val
abc_font_family_title_material
:
Int
static
val
abc_menu_alt_shortcut_label
:
Int
static
val
abc_menu_ctrl_shortcut_label
:
Int
static
val
abc_menu_delete_shortcut_label
:
Int
static
val
abc_menu_enter_shortcut_label
:
Int
static
val
abc_menu_function_shortcut_label
:
Int
static
val
abc_menu_meta_shortcut_label
:
Int
static
val
abc_menu_shift_shortcut_label
:
Int
static
val
abc_menu_space_shortcut_label
:
Int
static
val
abc_menu_sym_shortcut_label
:
Int
static
val
abc_prepend_shortcut_label
:
Int
static
val
abc_search_hint
:
Int
static
val
abc_searchview_description_clear
:
Int
static
val
abc_searchview_description_query
:
Int
static
val
abc_searchview_description_search
:
Int
static
val
abc_searchview_description_submit
:
Int
static
val
abc_searchview_description_voice
:
Int
static
val
abc_shareactionprovider_share_with
:
Int
static
val
abc_shareactionprovider_share_with_application
:
Int
static
val
abc_toolbar_collapse_description
:
Int
static
val
search_menu_title
:
Int
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
AlertDialog_AppCompat
:
Int
static
val
AlertDialog_AppCompat_Light
:
Int
static
val
Animation_AppCompat_Dialog
:
Int
static
val
Animation_AppCompat_DropDownUp
:
Int
static
val
Animation_AppCompat_Tooltip
:
Int
static
val
Base_AlertDialog_AppCompat
:
Int
static
val
Base_AlertDialog_AppCompat_Light
:
Int
static
val
Base_Animation_AppCompat_Dialog
:
Int
static
val
Base_Animation_AppCompat_DropDownUp
:
Int
static
val
Base_Animation_AppCompat_Tooltip
:
Int
static
val
Base_DialogWindowTitleBackground_AppCompat
:
Int
static
val
Base_DialogWindowTitle_AppCompat
:
Int
static
val
Base_TextAppearance_AppCompat
:
Int
static
val
Base_TextAppearance_AppCompat_Body1
:
Int
static
val
Base_TextAppearance_AppCompat_Body2
:
Int
static
val
Base_TextAppearance_AppCompat_Button
:
Int
static
val
Base_TextAppearance_AppCompat_Caption
:
Int
static
val
Base_TextAppearance_AppCompat_Display1
:
Int
static
val
Base_TextAppearance_AppCompat_Display2
:
Int
static
val
Base_TextAppearance_AppCompat_Display3
:
Int
static
val
Base_TextAppearance_AppCompat_Display4
:
Int
static
val
Base_TextAppearance_AppCompat_Headline
:
Int
static
val
Base_TextAppearance_AppCompat_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Large
:
Int
static
val
Base_TextAppearance_AppCompat_Large_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
:
Int
static
val
Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
:
Int
static
val
Base_TextAppearance_AppCompat_Medium
:
Int
static
val
Base_TextAppearance_AppCompat_Medium_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Menu
:
Int
static
val
Base_TextAppearance_AppCompat_SearchResult
:
Int
static
val
Base_TextAppearance_AppCompat_SearchResult_Subtitle
:
Int
static
val
Base_TextAppearance_AppCompat_SearchResult_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Small
:
Int
static
val
Base_TextAppearance_AppCompat_Small_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Subhead
:
Int
static
val
Base_TextAppearance_AppCompat_Subhead_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Title_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Tooltip
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Menu
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionMode_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button_Colored
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_DropDownItem
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_PopupMenu_Header
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_PopupMenu_Large
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_PopupMenu_Small
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Switch
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem
:
Int
static
val
Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item
:
Int
static
val
Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle
:
Int
static
val
Base_TextAppearance_Widget_AppCompat_Toolbar_Title
:
Int
static
val
Base_ThemeOverlay_AppCompat
:
Int
static
val
Base_ThemeOverlay_AppCompat_ActionBar
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dark
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dark_ActionBar
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dialog
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dialog_Alert
:
Int
static
val
Base_ThemeOverlay_AppCompat_Light
:
Int
static
val
Base_Theme_AppCompat
:
Int
static
val
Base_Theme_AppCompat_CompactMenu
:
Int
static
val
Base_Theme_AppCompat_Dialog
:
Int
static
val
Base_Theme_AppCompat_DialogWhenLarge
:
Int
static
val
Base_Theme_AppCompat_Dialog_Alert
:
Int
static
val
Base_Theme_AppCompat_Dialog_FixedSize
:
Int
static
val
Base_Theme_AppCompat_Dialog_MinWidth
:
Int
static
val
Base_Theme_AppCompat_Light
:
Int
static
val
Base_Theme_AppCompat_Light_DarkActionBar
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog
:
Int
static
val
Base_Theme_AppCompat_Light_DialogWhenLarge
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog_Alert
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog_FixedSize
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog_MinWidth
:
Int
static
val
Base_V21_ThemeOverlay_AppCompat_Dialog
:
Int
static
val
Base_V21_Theme_AppCompat
:
Int
static
val
Base_V21_Theme_AppCompat_Dialog
:
Int
static
val
Base_V21_Theme_AppCompat_Light
:
Int
static
val
Base_V21_Theme_AppCompat_Light_Dialog
:
Int
static
val
Base_V22_Theme_AppCompat
:
Int
static
val
Base_V22_Theme_AppCompat_Light
:
Int
static
val
Base_V23_Theme_AppCompat
:
Int
static
val
Base_V23_Theme_AppCompat_Light
:
Int
static
val
Base_V26_Theme_AppCompat
:
Int
static
val
Base_V26_Theme_AppCompat_Light
:
Int
static
val
Base_V26_Widget_AppCompat_Toolbar
:
Int
static
val
Base_V28_Theme_AppCompat
:
Int
static
val
Base_V28_Theme_AppCompat_Light
:
Int
static
val
Base_V7_ThemeOverlay_AppCompat_Dialog
:
Int
static
val
Base_V7_Theme_AppCompat
:
Int
static
val
Base_V7_Theme_AppCompat_Dialog
:
Int
static
val
Base_V7_Theme_AppCompat_Light
:
Int
static
val
Base_V7_Theme_AppCompat_Light_Dialog
:
Int
static
val
Base_V7_Widget_AppCompat_AutoCompleteTextView
:
Int
static
val
Base_V7_Widget_AppCompat_EditText
:
Int
static
val
Base_V7_Widget_AppCompat_Toolbar
:
Int
static
val
Base_Widget_AppCompat_ActionBar
:
Int
static
val
Base_Widget_AppCompat_ActionBar_Solid
:
Int
static
val
Base_Widget_AppCompat_ActionBar_TabBar
:
Int
static
val
Base_Widget_AppCompat_ActionBar_TabText
:
Int
static
val
Base_Widget_AppCompat_ActionBar_TabView
:
Int
static
val
Base_Widget_AppCompat_ActionButton
:
Int
static
val
Base_Widget_AppCompat_ActionButton_CloseMode
:
Int
static
val
Base_Widget_AppCompat_ActionButton_Overflow
:
Int
static
val
Base_Widget_AppCompat_ActionMode
:
Int
static
val
Base_Widget_AppCompat_ActivityChooserView
:
Int
static
val
Base_Widget_AppCompat_AutoCompleteTextView
:
Int
static
val
Base_Widget_AppCompat_Button
:
Int
static
val
Base_Widget_AppCompat_ButtonBar
:
Int
static
val
Base_Widget_AppCompat_ButtonBar_AlertDialog
:
Int
static
val
Base_Widget_AppCompat_Button_Borderless
:
Int
static
val
Base_Widget_AppCompat_Button_Borderless_Colored
:
Int
static
val
Base_Widget_AppCompat_Button_ButtonBar_AlertDialog
:
Int
static
val
Base_Widget_AppCompat_Button_Colored
:
Int
static
val
Base_Widget_AppCompat_Button_Small
:
Int
static
val
Base_Widget_AppCompat_CompoundButton_CheckBox
:
Int
static
val
Base_Widget_AppCompat_CompoundButton_RadioButton
:
Int
static
val
Base_Widget_AppCompat_CompoundButton_Switch
:
Int
static
val
Base_Widget_AppCompat_DrawerArrowToggle
:
Int
static
val
Base_Widget_AppCompat_DrawerArrowToggle_Common
:
Int
static
val
Base_Widget_AppCompat_DropDownItem_Spinner
:
Int
static
val
Base_Widget_AppCompat_EditText
:
Int
static
val
Base_Widget_AppCompat_ImageButton
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_Solid
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabBar
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabText
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabView
:
Int
static
val
Base_Widget_AppCompat_Light_PopupMenu
:
Int
static
val
Base_Widget_AppCompat_Light_PopupMenu_Overflow
:
Int
static
val
Base_Widget_AppCompat_ListMenuView
:
Int
static
val
Base_Widget_AppCompat_ListPopupWindow
:
Int
static
val
Base_Widget_AppCompat_ListView
:
Int
static
val
Base_Widget_AppCompat_ListView_DropDown
:
Int
static
val
Base_Widget_AppCompat_ListView_Menu
:
Int
static
val
Base_Widget_AppCompat_PopupMenu
:
Int
static
val
Base_Widget_AppCompat_PopupMenu_Overflow
:
Int
static
val
Base_Widget_AppCompat_PopupWindow
:
Int
static
val
Base_Widget_AppCompat_ProgressBar
:
Int
static
val
Base_Widget_AppCompat_ProgressBar_Horizontal
:
Int
static
val
Base_Widget_AppCompat_RatingBar
:
Int
static
val
Base_Widget_AppCompat_RatingBar_Indicator
:
Int
static
val
Base_Widget_AppCompat_RatingBar_Small
:
Int
static
val
Base_Widget_AppCompat_SearchView
:
Int
static
val
Base_Widget_AppCompat_SearchView_ActionBar
:
Int
static
val
Base_Widget_AppCompat_SeekBar
:
Int
static
val
Base_Widget_AppCompat_SeekBar_Discrete
:
Int
static
val
Base_Widget_AppCompat_Spinner
:
Int
static
val
Base_Widget_AppCompat_Spinner_Underlined
:
Int
static
val
Base_Widget_AppCompat_TextView_SpinnerItem
:
Int
static
val
Base_Widget_AppCompat_Toolbar
:
Int
static
val
Base_Widget_AppCompat_Toolbar_Button_Navigation
:
Int
static
val
Platform_AppCompat
:
Int
static
val
Platform_AppCompat_Light
:
Int
static
val
Platform_ThemeOverlay_AppCompat
:
Int
static
val
Platform_ThemeOverlay_AppCompat_Dark
:
Int
static
val
Platform_ThemeOverlay_AppCompat_Light
:
Int
static
val
Platform_V21_AppCompat
:
Int
static
val
Platform_V21_AppCompat_Light
:
Int
static
val
Platform_V25_AppCompat
:
Int
static
val
Platform_V25_AppCompat_Light
:
Int
static
val
Platform_Widget_AppCompat_Spinner
:
Int
static
val
RtlOverlay_DialogWindowTitle_AppCompat
:
Int
static
val
RtlOverlay_Widget_AppCompat_ActionBar_TitleItem
:
Int
static
val
RtlOverlay_Widget_AppCompat_DialogTitle_Icon
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_Text
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_Title
:
Int
static
val
RtlOverlay_Widget_AppCompat_SearchView_MagIcon
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Query
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Text
:
Int
static
val
RtlUnderlay_Widget_AppCompat_ActionButton
:
Int
static
val
RtlUnderlay_Widget_AppCompat_ActionButton_Overflow
:
Int
static
val
TextAppearance_AppCompat
:
Int
static
val
TextAppearance_AppCompat_Body1
:
Int
static
val
TextAppearance_AppCompat_Body2
:
Int
static
val
TextAppearance_AppCompat_Button
:
Int
static
val
TextAppearance_AppCompat_Caption
:
Int
static
val
TextAppearance_AppCompat_Display1
:
Int
static
val
TextAppearance_AppCompat_Display2
:
Int
static
val
TextAppearance_AppCompat_Display3
:
Int
static
val
TextAppearance_AppCompat_Display4
:
Int
static
val
TextAppearance_AppCompat_Headline
:
Int
static
val
TextAppearance_AppCompat_Inverse
:
Int
static
val
TextAppearance_AppCompat_Large
:
Int
static
val
TextAppearance_AppCompat_Large_Inverse
:
Int
static
val
TextAppearance_AppCompat_Light_SearchResult_Subtitle
:
Int
static
val
TextAppearance_AppCompat_Light_SearchResult_Title
:
Int
static
val
TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
:
Int
static
val
TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
:
Int
static
val
TextAppearance_AppCompat_Medium
:
Int
static
val
TextAppearance_AppCompat_Medium_Inverse
:
Int
static
val
TextAppearance_AppCompat_Menu
:
Int
static
val
TextAppearance_AppCompat_SearchResult_Subtitle
:
Int
static
val
TextAppearance_AppCompat_SearchResult_Title
:
Int
static
val
TextAppearance_AppCompat_Small
:
Int
static
val
TextAppearance_AppCompat_Small_Inverse
:
Int
static
val
TextAppearance_AppCompat_Subhead
:
Int
static
val
TextAppearance_AppCompat_Subhead_Inverse
:
Int
static
val
TextAppearance_AppCompat_Title
:
Int
static
val
TextAppearance_AppCompat_Title_Inverse
:
Int
static
val
TextAppearance_AppCompat_Tooltip
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Menu
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Subtitle
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Title
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Subtitle
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Title
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_Button
:
Int
static
val
TextAppearance_AppCompat_Widget_Button_Borderless_Colored
:
Int
static
val
TextAppearance_AppCompat_Widget_Button_Colored
:
Int
static
val
TextAppearance_AppCompat_Widget_Button_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_DropDownItem
:
Int
static
val
TextAppearance_AppCompat_Widget_PopupMenu_Header
:
Int
static
val
TextAppearance_AppCompat_Widget_PopupMenu_Large
:
Int
static
val
TextAppearance_AppCompat_Widget_PopupMenu_Small
:
Int
static
val
TextAppearance_AppCompat_Widget_Switch
:
Int
static
val
TextAppearance_AppCompat_Widget_TextView_SpinnerItem
:
Int
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
TextAppearance_Widget_AppCompat_ExpandedMenu_Item
:
Int
static
val
TextAppearance_Widget_AppCompat_Toolbar_Subtitle
:
Int
static
val
TextAppearance_Widget_AppCompat_Toolbar_Title
:
Int
static
val
ThemeOverlay_AppCompat
:
Int
static
val
ThemeOverlay_AppCompat_ActionBar
:
Int
static
val
ThemeOverlay_AppCompat_Dark
:
Int
static
val
ThemeOverlay_AppCompat_Dark_ActionBar
:
Int
static
val
ThemeOverlay_AppCompat_Dialog
:
Int
static
val
ThemeOverlay_AppCompat_Dialog_Alert
:
Int
static
val
ThemeOverlay_AppCompat_Light
:
Int
static
val
Theme_AppCompat
:
Int
static
val
Theme_AppCompat_CompactMenu
:
Int
static
val
Theme_AppCompat_DayNight
:
Int
static
val
Theme_AppCompat_DayNight_DarkActionBar
:
Int
static
val
Theme_AppCompat_DayNight_Dialog
:
Int
static
val
Theme_AppCompat_DayNight_DialogWhenLarge
:
Int
static
val
Theme_AppCompat_DayNight_Dialog_Alert
:
Int
static
val
Theme_AppCompat_DayNight_Dialog_MinWidth
:
Int
static
val
Theme_AppCompat_DayNight_NoActionBar
:
Int
static
val
Theme_AppCompat_Dialog
:
Int
static
val
Theme_AppCompat_DialogWhenLarge
:
Int
static
val
Theme_AppCompat_Dialog_Alert
:
Int
static
val
Theme_AppCompat_Dialog_MinWidth
:
Int
static
val
Theme_AppCompat_Light
:
Int
static
val
Theme_AppCompat_Light_DarkActionBar
:
Int
static
val
Theme_AppCompat_Light_Dialog
:
Int
static
val
Theme_AppCompat_Light_DialogWhenLarge
:
Int
static
val
Theme_AppCompat_Light_Dialog_Alert
:
Int
static
val
Theme_AppCompat_Light_Dialog_MinWidth
:
Int
static
val
Theme_AppCompat_Light_NoActionBar
:
Int
static
val
Theme_AppCompat_NoActionBar
:
Int
static
val
Widget_AppCompat_ActionBar
:
Int
static
val
Widget_AppCompat_ActionBar_Solid
:
Int
static
val
Widget_AppCompat_ActionBar_TabBar
:
Int
static
val
Widget_AppCompat_ActionBar_TabText
:
Int
static
val
Widget_AppCompat_ActionBar_TabView
:
Int
static
val
Widget_AppCompat_ActionButton
:
Int
static
val
Widget_AppCompat_ActionButton_CloseMode
:
Int
static
val
Widget_AppCompat_ActionButton_Overflow
:
Int
static
val
Widget_AppCompat_ActionMode
:
Int
static
val
Widget_AppCompat_ActivityChooserView
:
Int
static
val
Widget_AppCompat_AutoCompleteTextView
:
Int
static
val
Widget_AppCompat_Button
:
Int
static
val
Widget_AppCompat_ButtonBar
:
Int
static
val
Widget_AppCompat_ButtonBar_AlertDialog
:
Int
static
val
Widget_AppCompat_Button_Borderless
:
Int
static
val
Widget_AppCompat_Button_Borderless_Colored
:
Int
static
val
Widget_AppCompat_Button_ButtonBar_AlertDialog
:
Int
static
val
Widget_AppCompat_Button_Colored
:
Int
static
val
Widget_AppCompat_Button_Small
:
Int
static
val
Widget_AppCompat_CompoundButton_CheckBox
:
Int
static
val
Widget_AppCompat_CompoundButton_RadioButton
:
Int
static
val
Widget_AppCompat_CompoundButton_Switch
:
Int
static
val
Widget_AppCompat_DrawerArrowToggle
:
Int
static
val
Widget_AppCompat_DropDownItem_Spinner
:
Int
static
val
Widget_AppCompat_EditText
:
Int
static
val
Widget_AppCompat_ImageButton
:
Int
static
val
Widget_AppCompat_Light_ActionBar
:
Int
static
val
Widget_AppCompat_Light_ActionBar_Solid
:
Int
static
val
Widget_AppCompat_Light_ActionBar_Solid_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabBar
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabBar_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabText
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabText_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabView
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabView_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionButton
:
Int
static
val
Widget_AppCompat_Light_ActionButton_CloseMode
:
Int
static
val
Widget_AppCompat_Light_ActionButton_Overflow
:
Int
static
val
Widget_AppCompat_Light_ActionMode_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActivityChooserView
:
Int
static
val
Widget_AppCompat_Light_AutoCompleteTextView
:
Int
static
val
Widget_AppCompat_Light_DropDownItem_Spinner
:
Int
static
val
Widget_AppCompat_Light_ListPopupWindow
:
Int
static
val
Widget_AppCompat_Light_ListView_DropDown
:
Int
static
val
Widget_AppCompat_Light_PopupMenu
:
Int
static
val
Widget_AppCompat_Light_PopupMenu_Overflow
:
Int
static
val
Widget_AppCompat_Light_SearchView
:
Int
static
val
Widget_AppCompat_Light_Spinner_DropDown_ActionBar
:
Int
static
val
Widget_AppCompat_ListMenuView
:
Int
static
val
Widget_AppCompat_ListPopupWindow
:
Int
static
val
Widget_AppCompat_ListView
:
Int
static
val
Widget_AppCompat_ListView_DropDown
:
Int
static
val
Widget_AppCompat_ListView_Menu
:
Int
static
val
Widget_AppCompat_PopupMenu
:
Int
static
val
Widget_AppCompat_PopupMenu_Overflow
:
Int
static
val
Widget_AppCompat_PopupWindow
:
Int
static
val
Widget_AppCompat_ProgressBar
:
Int
static
val
Widget_AppCompat_ProgressBar_Horizontal
:
Int
static
val
Widget_AppCompat_RatingBar
:
Int
static
val
Widget_AppCompat_RatingBar_Indicator
:
Int
static
val
Widget_AppCompat_RatingBar_Small
:
Int
static
val
Widget_AppCompat_SearchView
:
Int
static
val
Widget_AppCompat_SearchView_ActionBar
:
Int
static
val
Widget_AppCompat_SeekBar
:
Int
static
val
Widget_AppCompat_SeekBar_Discrete
:
Int
static
val
Widget_AppCompat_Spinner
:
Int
static
val
Widget_AppCompat_Spinner_DropDown
:
Int
static
val
Widget_AppCompat_Spinner_DropDown_ActionBar
:
Int
static
val
Widget_AppCompat_Spinner_Underlined
:
Int
static
val
Widget_AppCompat_TextView_SpinnerItem
:
Int
static
val
Widget_AppCompat_Toolbar
:
Int
static
val
Widget_AppCompat_Toolbar_Button_Navigation
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
static
val
Widget_Support_CoordinatorLayout
:
Int
class
styleable
Module Contents
static
val
ActionBar
:
IntArray
static
val
ActionBarLayout
:
IntArray
static
val
ActionBarLayout_android_layout_gravity
:
Int
static
val
ActionBar_background
:
Int
static
val
ActionBar_backgroundSplit
:
Int
static
val
ActionBar_backgroundStacked
:
Int
static
val
ActionBar_contentInsetEnd
:
Int
static
val
ActionBar_contentInsetEndWithActions
:
Int
static
val
ActionBar_contentInsetLeft
:
Int
static
val
ActionBar_contentInsetRight
:
Int
static
val
ActionBar_contentInsetStart
:
Int
static
val
ActionBar_contentInsetStartWithNavigation
:
Int
static
val
ActionBar_customNavigationLayout
:
Int
static
val
ActionBar_displayOptions
:
Int
static
val
ActionBar_divider
:
Int
static
val
ActionBar_elevation
:
Int
static
val
ActionBar_height
:
Int
static
val
ActionBar_hideOnContentScroll
:
Int
static
val
ActionBar_homeAsUpIndicator
:
Int
static
val
ActionBar_homeLayout
:
Int
static
val
ActionBar_icon
:
Int
static
val
ActionBar_indeterminateProgressStyle
:
Int
static
val
ActionBar_itemPadding
:
Int
static
val
ActionBar_logo
:
Int
static
val
ActionBar_navigationMode
:
Int
static
val
ActionBar_popupTheme
:
Int
static
val
ActionBar_progressBarPadding
:
Int
static
val
ActionBar_progressBarStyle
:
Int
static
val
ActionBar_subtitle
:
Int
static
val
ActionBar_subtitleTextStyle
:
Int
static
val
ActionBar_title
:
Int
static
val
ActionBar_titleTextStyle
:
Int
static
val
ActionMenuItemView
:
IntArray
static
val
ActionMenuItemView_android_minWidth
:
Int
static
val
ActionMenuView
:
IntArray
static
val
ActionMode
:
IntArray
static
val
ActionMode_background
:
Int
static
val
ActionMode_backgroundSplit
:
Int
static
val
ActionMode_closeItemLayout
:
Int
static
val
ActionMode_height
:
Int
static
val
ActionMode_subtitleTextStyle
:
Int
static
val
ActionMode_titleTextStyle
:
Int
static
val
ActivityChooserView
:
IntArray
static
val
ActivityChooserView_expandActivityOverflowButtonDrawable
:
Int
static
val
ActivityChooserView_initialActivityCount
:
Int
static
val
AlertDialog
:
IntArray
static
val
AlertDialog_android_layout
:
Int
static
val
AlertDialog_buttonIconDimen
:
Int
static
val
AlertDialog_buttonPanelSideLayout
:
Int
static
val
AlertDialog_listItemLayout
:
Int
static
val
AlertDialog_listLayout
:
Int
static
val
AlertDialog_multiChoiceItemLayout
:
Int
static
val
AlertDialog_showTitle
:
Int
static
val
AlertDialog_singleChoiceItemLayout
:
Int
static
val
AnimatedStateListDrawableCompat
:
IntArray
static
val
AnimatedStateListDrawableCompat_android_constantSize
:
Int
static
val
AnimatedStateListDrawableCompat_android_dither
:
Int
static
val
AnimatedStateListDrawableCompat_android_enterFadeDuration
:
Int
static
val
AnimatedStateListDrawableCompat_android_exitFadeDuration
:
Int
static
val
AnimatedStateListDrawableCompat_android_variablePadding
:
Int
static
val
AnimatedStateListDrawableCompat_android_visible
:
Int
static
val
AnimatedStateListDrawableItem
:
IntArray
static
val
AnimatedStateListDrawableItem_android_drawable
:
Int
static
val
AnimatedStateListDrawableItem_android_id
:
Int
static
val
AnimatedStateListDrawableTransition
:
IntArray
static
val
AnimatedStateListDrawableTransition_android_drawable
:
Int
static
val
AnimatedStateListDrawableTransition_android_fromId
:
Int
static
val
AnimatedStateListDrawableTransition_android_reversible
:
Int
static
val
AnimatedStateListDrawableTransition_android_toId
:
Int
static
val
AppCompatImageView
:
IntArray
static
val
AppCompatImageView_android_src
:
Int
static
val
AppCompatImageView_srcCompat
:
Int
static
val
AppCompatImageView_tint
:
Int
static
val
AppCompatImageView_tintMode
:
Int
static
val
AppCompatSeekBar
:
IntArray
static
val
AppCompatSeekBar_android_thumb
:
Int
static
val
AppCompatSeekBar_tickMark
:
Int
static
val
AppCompatSeekBar_tickMarkTint
:
Int
static
val
AppCompatSeekBar_tickMarkTintMode
:
Int
static
val
AppCompatTextHelper
:
IntArray
static
val
AppCompatTextHelper_android_drawableBottom
:
Int
static
val
AppCompatTextHelper_android_drawableEnd
:
Int
static
val
AppCompatTextHelper_android_drawableLeft
:
Int
static
val
AppCompatTextHelper_android_drawableRight
:
Int
static
val
AppCompatTextHelper_android_drawableStart
:
Int
static
val
AppCompatTextHelper_android_drawableTop
:
Int
static
val
AppCompatTextHelper_android_textAppearance
:
Int
static
val
AppCompatTextView
:
IntArray
static
val
AppCompatTextView_android_textAppearance
:
Int
static
val
AppCompatTextView_autoSizeMaxTextSize
:
Int
static
val
AppCompatTextView_autoSizeMinTextSize
:
Int
static
val
AppCompatTextView_autoSizePresetSizes
:
Int
static
val
AppCompatTextView_autoSizeStepGranularity
:
Int
static
val
AppCompatTextView_autoSizeTextType
:
Int
static
val
AppCompatTextView_firstBaselineToTopHeight
:
Int
static
val
AppCompatTextView_fontFamily
:
Int
static
val
AppCompatTextView_lastBaselineToBottomHeight
:
Int
static
val
AppCompatTextView_lineHeight
:
Int
static
val
AppCompatTextView_textAllCaps
:
Int
static
val
AppCompatTheme
:
IntArray
static
val
AppCompatTheme_actionBarDivider
:
Int
static
val
AppCompatTheme_actionBarItemBackground
:
Int
static
val
AppCompatTheme_actionBarPopupTheme
:
Int
static
val
AppCompatTheme_actionBarSize
:
Int
static
val
AppCompatTheme_actionBarSplitStyle
:
Int
static
val
AppCompatTheme_actionBarStyle
:
Int
static
val
AppCompatTheme_actionBarTabBarStyle
:
Int
static
val
AppCompatTheme_actionBarTabStyle
:
Int
static
val
AppCompatTheme_actionBarTabTextStyle
:
Int
static
val
AppCompatTheme_actionBarTheme
:
Int
static
val
AppCompatTheme_actionBarWidgetTheme
:
Int
static
val
AppCompatTheme_actionButtonStyle
:
Int
static
val
AppCompatTheme_actionDropDownStyle
:
Int
static
val
AppCompatTheme_actionMenuTextAppearance
:
Int
static
val
AppCompatTheme_actionMenuTextColor
:
Int
static
val
AppCompatTheme_actionModeBackground
:
Int
static
val
AppCompatTheme_actionModeCloseButtonStyle
:
Int
static
val
AppCompatTheme_actionModeCloseDrawable
:
Int
static
val
AppCompatTheme_actionModeCopyDrawable
:
Int
static
val
AppCompatTheme_actionModeCutDrawable
:
Int
static
val
AppCompatTheme_actionModeFindDrawable
:
Int
static
val
AppCompatTheme_actionModePasteDrawable
:
Int
static
val
AppCompatTheme_actionModePopupWindowStyle
:
Int
static
val
AppCompatTheme_actionModeSelectAllDrawable
:
Int
static
val
AppCompatTheme_actionModeShareDrawable
:
Int
static
val
AppCompatTheme_actionModeSplitBackground
:
Int
static
val
AppCompatTheme_actionModeStyle
:
Int
static
val
AppCompatTheme_actionModeWebSearchDrawable
:
Int
static
val
AppCompatTheme_actionOverflowButtonStyle
:
Int
static
val
AppCompatTheme_actionOverflowMenuStyle
:
Int
static
val
AppCompatTheme_activityChooserViewStyle
:
Int
static
val
AppCompatTheme_alertDialogButtonGroupStyle
:
Int
static
val
AppCompatTheme_alertDialogCenterButtons
:
Int
static
val
AppCompatTheme_alertDialogStyle
:
Int
static
val
AppCompatTheme_alertDialogTheme
:
Int
static
val
AppCompatTheme_android_windowAnimationStyle
:
Int
static
val
AppCompatTheme_android_windowIsFloating
:
Int
static
val
AppCompatTheme_autoCompleteTextViewStyle
:
Int
static
val
AppCompatTheme_borderlessButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarNegativeButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarNeutralButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarPositiveButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarStyle
:
Int
static
val
AppCompatTheme_buttonStyle
:
Int
static
val
AppCompatTheme_buttonStyleSmall
:
Int
static
val
AppCompatTheme_checkboxStyle
:
Int
static
val
AppCompatTheme_checkedTextViewStyle
:
Int
static
val
AppCompatTheme_colorAccent
:
Int
static
val
AppCompatTheme_colorBackgroundFloating
:
Int
static
val
AppCompatTheme_colorButtonNormal
:
Int
static
val
AppCompatTheme_colorControlActivated
:
Int
static
val
AppCompatTheme_colorControlHighlight
:
Int
static
val
AppCompatTheme_colorControlNormal
:
Int
static
val
AppCompatTheme_colorError
:
Int
static
val
AppCompatTheme_colorPrimary
:
Int
static
val
AppCompatTheme_colorPrimaryDark
:
Int
static
val
AppCompatTheme_colorSwitchThumbNormal
:
Int
static
val
AppCompatTheme_controlBackground
:
Int
static
val
AppCompatTheme_dialogCornerRadius
:
Int
static
val
AppCompatTheme_dialogPreferredPadding
:
Int
static
val
AppCompatTheme_dialogTheme
:
Int
static
val
AppCompatTheme_dividerHorizontal
:
Int
static
val
AppCompatTheme_dividerVertical
:
Int
static
val
AppCompatTheme_dropDownListViewStyle
:
Int
static
val
AppCompatTheme_dropdownListPreferredItemHeight
:
Int
static
val
AppCompatTheme_editTextBackground
:
Int
static
val
AppCompatTheme_editTextColor
:
Int
static
val
AppCompatTheme_editTextStyle
:
Int
static
val
AppCompatTheme_homeAsUpIndicator
:
Int
static
val
AppCompatTheme_imageButtonStyle
:
Int
static
val
AppCompatTheme_listChoiceBackgroundIndicator
:
Int
static
val
AppCompatTheme_listDividerAlertDialog
:
Int
static
val
AppCompatTheme_listMenuViewStyle
:
Int
static
val
AppCompatTheme_listPopupWindowStyle
:
Int
static
val
AppCompatTheme_listPreferredItemHeight
:
Int
static
val
AppCompatTheme_listPreferredItemHeightLarge
:
Int
static
val
AppCompatTheme_listPreferredItemHeightSmall
:
Int
static
val
AppCompatTheme_listPreferredItemPaddingLeft
:
Int
static
val
AppCompatTheme_listPreferredItemPaddingRight
:
Int
static
val
AppCompatTheme_panelBackground
:
Int
static
val
AppCompatTheme_panelMenuListTheme
:
Int
static
val
AppCompatTheme_panelMenuListWidth
:
Int
static
val
AppCompatTheme_popupMenuStyle
:
Int
static
val
AppCompatTheme_popupWindowStyle
:
Int
static
val
AppCompatTheme_radioButtonStyle
:
Int
static
val
AppCompatTheme_ratingBarStyle
:
Int
static
val
AppCompatTheme_ratingBarStyleIndicator
:
Int
static
val
AppCompatTheme_ratingBarStyleSmall
:
Int
static
val
AppCompatTheme_searchViewStyle
:
Int
static
val
AppCompatTheme_seekBarStyle
:
Int
static
val
AppCompatTheme_selectableItemBackground
:
Int
static
val
AppCompatTheme_selectableItemBackgroundBorderless
:
Int
static
val
AppCompatTheme_spinnerDropDownItemStyle
:
Int
static
val
AppCompatTheme_spinnerStyle
:
Int
static
val
AppCompatTheme_switchStyle
:
Int
static
val
AppCompatTheme_textAppearanceLargePopupMenu
:
Int
static
val
AppCompatTheme_textAppearanceListItem
:
Int
static
val
AppCompatTheme_textAppearanceListItemSecondary
:
Int
static
val
AppCompatTheme_textAppearanceListItemSmall
:
Int
static
val
AppCompatTheme_textAppearancePopupMenuHeader
:
Int
static
val
AppCompatTheme_textAppearanceSearchResultSubtitle
:
Int
static
val
AppCompatTheme_textAppearanceSearchResultTitle
:
Int
static
val
AppCompatTheme_textAppearanceSmallPopupMenu
:
Int
static
val
AppCompatTheme_textColorAlertDialogListItem
:
Int
static
val
AppCompatTheme_textColorSearchUrl
:
Int
static
val
AppCompatTheme_toolbarNavigationButtonStyle
:
Int
static
val
AppCompatTheme_toolbarStyle
:
Int
static
val
AppCompatTheme_tooltipForegroundColor
:
Int
static
val
AppCompatTheme_tooltipFrameBackground
:
Int
static
val
AppCompatTheme_viewInflaterClass
:
Int
static
val
AppCompatTheme_windowActionBar
:
Int
static
val
AppCompatTheme_windowActionBarOverlay
:
Int
static
val
AppCompatTheme_windowActionModeOverlay
:
Int
static
val
AppCompatTheme_windowFixedHeightMajor
:
Int
static
val
AppCompatTheme_windowFixedHeightMinor
:
Int
static
val
AppCompatTheme_windowFixedWidthMajor
:
Int
static
val
AppCompatTheme_windowFixedWidthMinor
:
Int
static
val
AppCompatTheme_windowMinWidthMajor
:
Int
static
val
AppCompatTheme_windowMinWidthMinor
:
Int
static
val
AppCompatTheme_windowNoTitle
:
Int
static
val
ButtonBarLayout
:
IntArray
static
val
ButtonBarLayout_allowStacking
:
Int
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
CompoundButton
:
IntArray
static
val
CompoundButton_android_button
:
Int
static
val
CompoundButton_buttonTint
:
Int
static
val
CompoundButton_buttonTintMode
:
Int
static
val
CoordinatorLayout
:
IntArray
static
val
CoordinatorLayout_Layout
:
IntArray
static
val
CoordinatorLayout_Layout_android_layout_gravity
:
Int
static
val
CoordinatorLayout_Layout_layout_anchor
:
Int
static
val
CoordinatorLayout_Layout_layout_anchorGravity
:
Int
static
val
CoordinatorLayout_Layout_layout_behavior
:
Int
static
val
CoordinatorLayout_Layout_layout_dodgeInsetEdges
:
Int
static
val
CoordinatorLayout_Layout_layout_insetEdge
:
Int
static
val
CoordinatorLayout_Layout_layout_keyline
:
Int
static
val
CoordinatorLayout_keylines
:
Int
static
val
CoordinatorLayout_statusBarBackground
:
Int
static
val
DrawerArrowToggle
:
IntArray
static
val
DrawerArrowToggle_arrowHeadLength
:
Int
static
val
DrawerArrowToggle_arrowShaftLength
:
Int
static
val
DrawerArrowToggle_barLength
:
Int
static
val
DrawerArrowToggle_color
:
Int
static
val
DrawerArrowToggle_drawableSize
:
Int
static
val
DrawerArrowToggle_gapBetweenBars
:
Int
static
val
DrawerArrowToggle_spinBars
:
Int
static
val
DrawerArrowToggle_thickness
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
static
val
LinearLayoutCompat
:
IntArray
static
val
LinearLayoutCompat_Layout
:
IntArray
static
val
LinearLayoutCompat_Layout_android_layout_gravity
:
Int
static
val
LinearLayoutCompat_Layout_android_layout_height
:
Int
static
val
LinearLayoutCompat_Layout_android_layout_weight
:
Int
static
val
LinearLayoutCompat_Layout_android_layout_width
:
Int
static
val
LinearLayoutCompat_android_baselineAligned
:
Int
static
val
LinearLayoutCompat_android_baselineAlignedChildIndex
:
Int
static
val
LinearLayoutCompat_android_gravity
:
Int
static
val
LinearLayoutCompat_android_orientation
:
Int
static
val
LinearLayoutCompat_android_weightSum
:
Int
static
val
LinearLayoutCompat_divider
:
Int
static
val
LinearLayoutCompat_dividerPadding
:
Int
static
val
LinearLayoutCompat_measureWithLargestChild
:
Int
static
val
LinearLayoutCompat_showDividers
:
Int
static
val
ListPopupWindow
:
IntArray
static
val
ListPopupWindow_android_dropDownHorizontalOffset
:
Int
static
val
ListPopupWindow_android_dropDownVerticalOffset
:
Int
static
val
MenuGroup
:
IntArray
static
val
MenuGroup_android_checkableBehavior
:
Int
static
val
MenuGroup_android_enabled
:
Int
static
val
MenuGroup_android_id
:
Int
static
val
MenuGroup_android_menuCategory
:
Int
static
val
MenuGroup_android_orderInCategory
:
Int
static
val
MenuGroup_android_visible
:
Int
static
val
MenuItem
:
IntArray
static
val
MenuItem_actionLayout
:
Int
static
val
MenuItem_actionProviderClass
:
Int
static
val
MenuItem_actionViewClass
:
Int
static
val
MenuItem_alphabeticModifiers
:
Int
static
val
MenuItem_android_alphabeticShortcut
:
Int
static
val
MenuItem_android_checkable
:
Int
static
val
MenuItem_android_checked
:
Int
static
val
MenuItem_android_enabled
:
Int
static
val
MenuItem_android_icon
:
Int
static
val
MenuItem_android_id
:
Int
static
val
MenuItem_android_menuCategory
:
Int
static
val
MenuItem_android_numericShortcut
:
Int
static
val
MenuItem_android_onClick
:
Int
static
val
MenuItem_android_orderInCategory
:
Int
static
val
MenuItem_android_title
:
Int
static
val
MenuItem_android_titleCondensed
:
Int
static
val
MenuItem_android_visible
:
Int
static
val
MenuItem_contentDescription
:
Int
static
val
MenuItem_iconTint
:
Int
static
val
MenuItem_iconTintMode
:
Int
static
val
MenuItem_numericModifiers
:
Int
static
val
MenuItem_showAsAction
:
Int
static
val
MenuItem_tooltipText
:
Int
static
val
MenuView
:
IntArray
static
val
MenuView_android_headerBackground
:
Int
static
val
MenuView_android_horizontalDivider
:
Int
static
val
MenuView_android_itemBackground
:
Int
static
val
MenuView_android_itemIconDisabledAlpha
:
Int
static
val
MenuView_android_itemTextAppearance
:
Int
static
val
MenuView_android_verticalDivider
:
Int
static
val
MenuView_android_windowAnimationStyle
:
Int
static
val
MenuView_preserveIconSpacing
:
Int
static
val
MenuView_subMenuArrow
:
Int
static
val
PopupWindow
:
IntArray
static
val
PopupWindowBackgroundState
:
IntArray
static
val
PopupWindowBackgroundState_state_above_anchor
:
Int
static
val
PopupWindow_android_popupAnimationStyle
:
Int
static
val
PopupWindow_android_popupBackground
:
Int
static
val
PopupWindow_overlapAnchor
:
Int
static
val
RecycleListView
:
IntArray
static
val
RecycleListView_paddingBottomNoButtons
:
Int
static
val
RecycleListView_paddingTopNoTitle
:
Int
static
val
SearchView
:
IntArray
static
val
SearchView_android_focusable
:
Int
static
val
SearchView_android_imeOptions
:
Int
static
val
SearchView_android_inputType
:
Int
static
val
SearchView_android_maxWidth
:
Int
static
val
SearchView_closeIcon
:
Int
static
val
SearchView_commitIcon
:
Int
static
val
SearchView_defaultQueryHint
:
Int
static
val
SearchView_goIcon
:
Int
static
val
SearchView_iconifiedByDefault
:
Int
static
val
SearchView_layout
:
Int
static
val
SearchView_queryBackground
:
Int
static
val
SearchView_queryHint
:
Int
static
val
SearchView_searchHintIcon
:
Int
static
val
SearchView_searchIcon
:
Int
static
val
SearchView_submitBackground
:
Int
static
val
SearchView_suggestionRowLayout
:
Int
static
val
SearchView_voiceIcon
:
Int
static
val
Spinner
:
IntArray
static
val
Spinner_android_dropDownWidth
:
Int
static
val
Spinner_android_entries
:
Int
static
val
Spinner_android_popupBackground
:
Int
static
val
Spinner_android_prompt
:
Int
static
val
Spinner_popupTheme
:
Int
static
val
StateListDrawable
:
IntArray
static
val
StateListDrawableItem
:
IntArray
static
val
StateListDrawableItem_android_drawable
:
Int
static
val
StateListDrawable_android_constantSize
:
Int
static
val
StateListDrawable_android_dither
:
Int
static
val
StateListDrawable_android_enterFadeDuration
:
Int
static
val
StateListDrawable_android_exitFadeDuration
:
Int
static
val
StateListDrawable_android_variablePadding
:
Int
static
val
StateListDrawable_android_visible
:
Int
static
val
SwitchCompat
:
IntArray
static
val
SwitchCompat_android_textOff
:
Int
static
val
SwitchCompat_android_textOn
:
Int
static
val
SwitchCompat_android_thumb
:
Int
static
val
SwitchCompat_showText
:
Int
static
val
SwitchCompat_splitTrack
:
Int
static
val
SwitchCompat_switchMinWidth
:
Int
static
val
SwitchCompat_switchPadding
:
Int
static
val
SwitchCompat_switchTextAppearance
:
Int
static
val
SwitchCompat_thumbTextPadding
:
Int
static
val
SwitchCompat_thumbTint
:
Int
static
val
SwitchCompat_thumbTintMode
:
Int
static
val
SwitchCompat_track
:
Int
static
val
SwitchCompat_trackTint
:
Int
static
val
SwitchCompat_trackTintMode
:
Int
static
val
TextAppearance
:
IntArray
static
val
TextAppearance_android_fontFamily
:
Int
static
val
TextAppearance_android_shadowColor
:
Int
static
val
TextAppearance_android_shadowDx
:
Int
static
val
TextAppearance_android_shadowDy
:
Int
static
val
TextAppearance_android_shadowRadius
:
Int
static
val
TextAppearance_android_textColor
:
Int
static
val
TextAppearance_android_textColorHint
:
Int
static
val
TextAppearance_android_textColorLink
:
Int
static
val
TextAppearance_android_textSize
:
Int
static
val
TextAppearance_android_textStyle
:
Int
static
val
TextAppearance_android_typeface
:
Int
static
val
TextAppearance_fontFamily
:
Int
static
val
TextAppearance_textAllCaps
:
Int
static
val
Toolbar
:
IntArray
static
val
Toolbar_android_gravity
:
Int
static
val
Toolbar_android_minHeight
:
Int
static
val
Toolbar_buttonGravity
:
Int
static
val
Toolbar_collapseContentDescription
:
Int
static
val
Toolbar_collapseIcon
:
Int
static
val
Toolbar_contentInsetEnd
:
Int
static
val
Toolbar_contentInsetEndWithActions
:
Int
static
val
Toolbar_contentInsetLeft
:
Int
static
val
Toolbar_contentInsetRight
:
Int
static
val
Toolbar_contentInsetStart
:
Int
static
val
Toolbar_contentInsetStartWithNavigation
:
Int
static
val
Toolbar_logo
:
Int
static
val
Toolbar_logoDescription
:
Int
static
val
Toolbar_maxButtonHeight
:
Int
static
val
Toolbar_navigationContentDescription
:
Int
static
val
Toolbar_navigationIcon
:
Int
static
val
Toolbar_popupTheme
:
Int
static
val
Toolbar_subtitle
:
Int
static
val
Toolbar_subtitleTextAppearance
:
Int
static
val
Toolbar_subtitleTextColor
:
Int
static
val
Toolbar_title
:
Int
static
val
Toolbar_titleMargin
:
Int
static
val
Toolbar_titleMarginBottom
:
Int
static
val
Toolbar_titleMarginEnd
:
Int
static
val
Toolbar_titleMarginStart
:
Int
static
val
Toolbar_titleMarginTop
:
Int
static
val
Toolbar_titleMargins
:
Int
static
val
Toolbar_titleTextAppearance
:
Int
static
val
Toolbar_titleTextColor
:
Int
static
val
View
:
IntArray
static
val
ViewBackgroundHelper
:
IntArray
static
val
ViewBackgroundHelper_android_background
:
Int
static
val
ViewBackgroundHelper_backgroundTint
:
Int
static
val
ViewBackgroundHelper_backgroundTintMode
:
Int
static
val
ViewStubCompat
:
IntArray
static
val
ViewStubCompat_android_id
:
Int
static
val
ViewStubCompat_android_inflatedId
:
Int
static
val
ViewStubCompat_android_layout
:
Int
static
val
View_android_focusable
:
Int
static
val
View_android_theme
:
Int
static
val
View_paddingEnd
:
Int
static
val
View_paddingStart
:
Int
static
val
View_theme
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
cardBackgroundColor
:
Int
static
val
cardCornerRadius
:
Int
static
val
cardElevation
:
Int
static
val
cardMaxElevation
:
Int
static
val
cardPreventCornerOverlap
:
Int
static
val
cardUseCompatPadding
:
Int
static
val
cardViewStyle
:
Int
static
val
contentPadding
:
Int
static
val
contentPaddingBottom
:
Int
static
val
contentPaddingLeft
:
Int
static
val
contentPaddingRight
:
Int
static
val
contentPaddingTop
:
Int
class
color
Module Contents
static
val
cardview_dark_background
:
Int
static
val
cardview_light_background
:
Int
static
val
cardview_shadow_end_color
:
Int
static
val
cardview_shadow_start_color
:
Int
class
dimen
Module Contents
static
val
cardview_compat_inset_shadow
:
Int
static
val
cardview_default_elevation
:
Int
static
val
cardview_default_radius
:
Int
class
style
Module Contents
static
val
Base_CardView
:
Int
static
val
CardView
:
Int
static
val
CardView_Dark
:
Int
static
val
CardView_Light
:
Int
class
styleable
Module Contents
static
val
CardView
:
IntArray
static
val
CardView_android_minHeight
:
Int
static
val
CardView_android_minWidth
:
Int
static
val
CardView_cardBackgroundColor
:
Int
static
val
CardView_cardCornerRadius
:
Int
static
val
CardView_cardElevation
:
Int
static
val
CardView_cardMaxElevation
:
Int
static
val
CardView_cardPreventCornerOverlap
:
Int
static
val
CardView_cardUseCompatPadding
:
Int
static
val
CardView_contentPadding
:
Int
static
val
CardView_contentPaddingBottom
:
Int
static
val
CardView_contentPaddingLeft
:
Int
static
val
CardView_contentPaddingRight
:
Int
static
val
CardView_contentPaddingTop
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
cardBackgroundColor
:
Int
static
val
cardCornerRadius
:
Int
static
val
cardElevation
:
Int
static
val
cardMaxElevation
:
Int
static
val
cardPreventCornerOverlap
:
Int
static
val
cardUseCompatPadding
:
Int
static
val
cardViewStyle
:
Int
static
val
contentPadding
:
Int
static
val
contentPaddingBottom
:
Int
static
val
contentPaddingLeft
:
Int
static
val
contentPaddingRight
:
Int
static
val
contentPaddingTop
:
Int
class
color
Module Contents
static
val
cardview_dark_background
:
Int
static
val
cardview_light_background
:
Int
static
val
cardview_shadow_end_color
:
Int
static
val
cardview_shadow_start_color
:
Int
class
dimen
Module Contents
static
val
cardview_compat_inset_shadow
:
Int
static
val
cardview_default_elevation
:
Int
static
val
cardview_default_radius
:
Int
class
style
Module Contents
static
val
Base_CardView
:
Int
static
val
CardView
:
Int
static
val
CardView_Dark
:
Int
static
val
CardView_Light
:
Int
class
styleable
Module Contents
static
val
CardView
:
IntArray
static
val
CardView_android_minHeight
:
Int
static
val
CardView_android_minWidth
:
Int
static
val
CardView_cardBackgroundColor
:
Int
static
val
CardView_cardCornerRadius
:
Int
static
val
CardView_cardElevation
:
Int
static
val
CardView_cardMaxElevation
:
Int
static
val
CardView_cardPreventCornerOverlap
:
Int
static
val
CardView_cardUseCompatPadding
:
Int
static
val
CardView_contentPadding
:
Int
static
val
CardView_contentPaddingBottom
:
Int
static
val
CardView_contentPaddingLeft
:
Int
static
val
CardView_contentPaddingRight
:
Int
static
val
CardView_contentPaddingTop
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
coordinatorLayoutStyle
:
Int
static
val
fastScrollEnabled
:
Int
static
val
fastScrollHorizontalThumbDrawable
:
Int
static
val
fastScrollHorizontalTrackDrawable
:
Int
static
val
fastScrollVerticalThumbDrawable
:
Int
static
val
fastScrollVerticalTrackDrawable
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
keylines
:
Int
static
val
layoutManager
:
Int
static
val
layout_anchor
:
Int
static
val
layout_anchorGravity
:
Int
static
val
layout_behavior
:
Int
static
val
layout_dodgeInsetEdges
:
Int
static
val
layout_insetEdge
:
Int
static
val
layout_keyline
:
Int
static
val
reverseLayout
:
Int
static
val
spanCount
:
Int
static
val
stackFromEnd
:
Int
static
val
statusBarBackground
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
fastscroll_default_thickness
:
Int
static
val
fastscroll_margin
:
Int
static
val
fastscroll_minimum_range
:
Int
static
val
item_touch_helper_max_drag_scroll_per_frame
:
Int
static
val
item_touch_helper_swipe_escape_max_velocity
:
Int
static
val
item_touch_helper_swipe_escape_velocity
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
bottom
:
Int
static
val
chronometer
:
Int
static
val
end
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
item_touch_helper_previous_elevation
:
Int
static
val
left
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
none
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
start
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
static
val
top
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
static
val
Widget_Support_CoordinatorLayout
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
CoordinatorLayout
:
IntArray
static
val
CoordinatorLayout_Layout
:
IntArray
static
val
CoordinatorLayout_Layout_android_layout_gravity
:
Int
static
val
CoordinatorLayout_Layout_layout_anchor
:
Int
static
val
CoordinatorLayout_Layout_layout_anchorGravity
:
Int
static
val
CoordinatorLayout_Layout_layout_behavior
:
Int
static
val
CoordinatorLayout_Layout_layout_dodgeInsetEdges
:
Int
static
val
CoordinatorLayout_Layout_layout_insetEdge
:
Int
static
val
CoordinatorLayout_Layout_layout_keyline
:
Int
static
val
CoordinatorLayout_keylines
:
Int
static
val
CoordinatorLayout_statusBarBackground
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
static
val
RecyclerView
:
IntArray
static
val
RecyclerView_android_descendantFocusability
:
Int
static
val
RecyclerView_android_orientation
:
Int
static
val
RecyclerView_fastScrollEnabled
:
Int
static
val
RecyclerView_fastScrollHorizontalThumbDrawable
:
Int
static
val
RecyclerView_fastScrollHorizontalTrackDrawable
:
Int
static
val
RecyclerView_fastScrollVerticalThumbDrawable
:
Int
static
val
RecyclerView_fastScrollVerticalTrackDrawable
:
Int
static
val
RecyclerView_layoutManager
:
Int
static
val
RecyclerView_reverseLayout
:
Int
static
val
RecyclerView_spanCount
:
Int
static
val
RecyclerView_stackFromEnd
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
coordinatorLayoutStyle
:
Int
static
val
fastScrollEnabled
:
Int
static
val
fastScrollHorizontalThumbDrawable
:
Int
static
val
fastScrollHorizontalTrackDrawable
:
Int
static
val
fastScrollVerticalThumbDrawable
:
Int
static
val
fastScrollVerticalTrackDrawable
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
keylines
:
Int
static
val
layoutManager
:
Int
static
val
layout_anchor
:
Int
static
val
layout_anchorGravity
:
Int
static
val
layout_behavior
:
Int
static
val
layout_dodgeInsetEdges
:
Int
static
val
layout_insetEdge
:
Int
static
val
layout_keyline
:
Int
static
val
reverseLayout
:
Int
static
val
spanCount
:
Int
static
val
stackFromEnd
:
Int
static
val
statusBarBackground
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
fastscroll_default_thickness
:
Int
static
val
fastscroll_margin
:
Int
static
val
fastscroll_minimum_range
:
Int
static
val
item_touch_helper_max_drag_scroll_per_frame
:
Int
static
val
item_touch_helper_swipe_escape_max_velocity
:
Int
static
val
item_touch_helper_swipe_escape_velocity
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
bottom
:
Int
static
val
chronometer
:
Int
static
val
end
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
item_touch_helper_previous_elevation
:
Int
static
val
left
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
none
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
start
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
static
val
top
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
static
val
Widget_Support_CoordinatorLayout
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
CoordinatorLayout
:
IntArray
static
val
CoordinatorLayout_Layout
:
IntArray
static
val
CoordinatorLayout_Layout_android_layout_gravity
:
Int
static
val
CoordinatorLayout_Layout_layout_anchor
:
Int
static
val
CoordinatorLayout_Layout_layout_anchorGravity
:
Int
static
val
CoordinatorLayout_Layout_layout_behavior
:
Int
static
val
CoordinatorLayout_Layout_layout_dodgeInsetEdges
:
Int
static
val
CoordinatorLayout_Layout_layout_insetEdge
:
Int
static
val
CoordinatorLayout_Layout_layout_keyline
:
Int
static
val
CoordinatorLayout_keylines
:
Int
static
val
CoordinatorLayout_statusBarBackground
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
static
val
RecyclerView
:
IntArray
static
val
RecyclerView_android_descendantFocusability
:
Int
static
val
RecyclerView_android_orientation
:
Int
static
val
RecyclerView_fastScrollEnabled
:
Int
static
val
RecyclerView_fastScrollHorizontalThumbDrawable
:
Int
static
val
RecyclerView_fastScrollHorizontalTrackDrawable
:
Int
static
val
RecyclerView_fastScrollVerticalThumbDrawable
:
Int
static
val
RecyclerView_fastScrollVerticalTrackDrawable
:
Int
static
val
RecyclerView_layoutManager
:
Int
static
val
RecyclerView_reverseLayout
:
Int
static
val
RecyclerView_spanCount
:
Int
static
val
RecyclerView_stackFromEnd
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
class
R
class
R
class
R
class
R
class
R
class
R
class
R
class
RegistreerFragment
:
Fragment
Module Contents
RegistreerFragment
(
)
fun
onActivityCreated
(
savedInstanceState
:
Bundle
?
)
:
Unit
fun
onCreateView
(
inflater
:
LayoutInflater
,
container
:
ViewGroup
?
,
savedInstanceState
:
Bundle
?
)
:
View
?
data
class
RegistreerResponse
Module Contents
RegistreerResponse
(
token
:
String
)
val
token
:
String
object
StadFoto
Module Contents
fun
image
(
stad
:
String
)
:
String
package
android.arch.core
Module Contents
class
R
class
R
package
android.arch.lifecycle
Module Contents
class
R
class
R
package
android.arch.lifecycle.extensions
Module Contents
class
R
Module Contents
class
attr
Module Contents
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontWeight
:
Int
class
bool
Module Contents
static
val
abc_action_bar_embed_tabs
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontWeight
:
Int
class
bool
Module Contents
static
val
abc_action_bar_embed_tabs
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
package
android.arch.lifecycle.livedata
Module Contents
class
R
class
R
package
android.arch.lifecycle.livedata.core
Module Contents
class
R
class
R
package
android.arch.lifecycle.viewmodel
Module Contents
class
R
class
R
package
android.arch.persistence.db
Module Contents
class
R
class
R
package
android.arch.persistence.db.framework
Module Contents
class
R
class
R
package
android.arch.persistence.room
Module Contents
class
R
Module Contents
class
attr
Module Contents
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontWeight
:
Int
class
bool
Module Contents
static
val
abc_action_bar_embed_tabs
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontWeight
:
Int
class
bool
Module Contents
static
val
abc_action_bar_embed_tabs
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
package
android.arch.persistence.room.rxjava2
Module Contents
class
R
Module Contents
class
attr
Module Contents
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontWeight
:
Int
class
bool
Module Contents
static
val
abc_action_bar_embed_tabs
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontWeight
:
Int
class
bool
Module Contents
static
val
abc_action_bar_embed_tabs
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
package
android.support.asynclayoutinflater
Module Contents
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
package
android.support.compat
Module Contents
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
package
android.support.constraint
Module Contents
class
R
Module Contents
class
attr
Module Contents
static
val
barrierAllowsGoneWidgets
:
Int
static
val
barrierDirection
:
Int
static
val
chainUseRtl
:
Int
static
val
constraintSet
:
Int
static
val
constraint_referenced_ids
:
Int
static
val
content
:
Int
static
val
emptyVisibility
:
Int
static
val
layout_constrainedHeight
:
Int
static
val
layout_constrainedWidth
:
Int
static
val
layout_constraintBaseline_creator
:
Int
static
val
layout_constraintBaseline_toBaselineOf
:
Int
static
val
layout_constraintBottom_creator
:
Int
static
val
layout_constraintBottom_toBottomOf
:
Int
static
val
layout_constraintBottom_toTopOf
:
Int
static
val
layout_constraintCircle
:
Int
static
val
layout_constraintCircleAngle
:
Int
static
val
layout_constraintCircleRadius
:
Int
static
val
layout_constraintDimensionRatio
:
Int
static
val
layout_constraintEnd_toEndOf
:
Int
static
val
layout_constraintEnd_toStartOf
:
Int
static
val
layout_constraintGuide_begin
:
Int
static
val
layout_constraintGuide_end
:
Int
static
val
layout_constraintGuide_percent
:
Int
static
val
layout_constraintHeight_default
:
Int
static
val
layout_constraintHeight_max
:
Int
static
val
layout_constraintHeight_min
:
Int
static
val
layout_constraintHeight_percent
:
Int
static
val
layout_constraintHorizontal_bias
:
Int
static
val
layout_constraintHorizontal_chainStyle
:
Int
static
val
layout_constraintHorizontal_weight
:
Int
static
val
layout_constraintLeft_creator
:
Int
static
val
layout_constraintLeft_toLeftOf
:
Int
static
val
layout_constraintLeft_toRightOf
:
Int
static
val
layout_constraintRight_creator
:
Int
static
val
layout_constraintRight_toLeftOf
:
Int
static
val
layout_constraintRight_toRightOf
:
Int
static
val
layout_constraintStart_toEndOf
:
Int
static
val
layout_constraintStart_toStartOf
:
Int
static
val
layout_constraintTop_creator
:
Int
static
val
layout_constraintTop_toBottomOf
:
Int
static
val
layout_constraintTop_toTopOf
:
Int
static
val
layout_constraintVertical_bias
:
Int
static
val
layout_constraintVertical_chainStyle
:
Int
static
val
layout_constraintVertical_weight
:
Int
static
val
layout_constraintWidth_default
:
Int
static
val
layout_constraintWidth_max
:
Int
static
val
layout_constraintWidth_min
:
Int
static
val
layout_constraintWidth_percent
:
Int
static
val
layout_editor_absoluteX
:
Int
static
val
layout_editor_absoluteY
:
Int
static
val
layout_goneMarginBottom
:
Int
static
val
layout_goneMarginEnd
:
Int
static
val
layout_goneMarginLeft
:
Int
static
val
layout_goneMarginRight
:
Int
static
val
layout_goneMarginStart
:
Int
static
val
layout_goneMarginTop
:
Int
static
val
layout_optimizationLevel
:
Int
class
id
Module Contents
static
val
bottom
:
Int
static
val
end
:
Int
static
val
gone
:
Int
static
val
invisible
:
Int
static
val
left
:
Int
static
val
packed
:
Int
static
val
parent
:
Int
static
val
percent
:
Int
static
val
right
:
Int
static
val
spread
:
Int
static
val
spread_inside
:
Int
static
val
start
:
Int
static
val
top
:
Int
static
val
wrap
:
Int
class
styleable
Module Contents
static
val
ConstraintLayout_Layout
:
IntArray
static
val
ConstraintLayout_Layout_android_maxHeight
:
Int
static
val
ConstraintLayout_Layout_android_maxWidth
:
Int
static
val
ConstraintLayout_Layout_android_minHeight
:
Int
static
val
ConstraintLayout_Layout_android_minWidth
:
Int
static
val
ConstraintLayout_Layout_android_orientation
:
Int
static
val
ConstraintLayout_Layout_barrierAllowsGoneWidgets
:
Int
static
val
ConstraintLayout_Layout_barrierDirection
:
Int
static
val
ConstraintLayout_Layout_chainUseRtl
:
Int
static
val
ConstraintLayout_Layout_constraintSet
:
Int
static
val
ConstraintLayout_Layout_constraint_referenced_ids
:
Int
static
val
ConstraintLayout_Layout_layout_constrainedHeight
:
Int
static
val
ConstraintLayout_Layout_layout_constrainedWidth
:
Int
static
val
ConstraintLayout_Layout_layout_constraintBaseline_creator
:
Int
static
val
ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintBottom_creator
:
Int
static
val
ConstraintLayout_Layout_layout_constraintBottom_toBottomOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintBottom_toTopOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintCircle
:
Int
static
val
ConstraintLayout_Layout_layout_constraintCircleAngle
:
Int
static
val
ConstraintLayout_Layout_layout_constraintCircleRadius
:
Int
static
val
ConstraintLayout_Layout_layout_constraintDimensionRatio
:
Int
static
val
ConstraintLayout_Layout_layout_constraintEnd_toEndOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintEnd_toStartOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintGuide_begin
:
Int
static
val
ConstraintLayout_Layout_layout_constraintGuide_end
:
Int
static
val
ConstraintLayout_Layout_layout_constraintGuide_percent
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHeight_default
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHeight_max
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHeight_min
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHeight_percent
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHorizontal_bias
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHorizontal_weight
:
Int
static
val
ConstraintLayout_Layout_layout_constraintLeft_creator
:
Int
static
val
ConstraintLayout_Layout_layout_constraintLeft_toLeftOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintLeft_toRightOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintRight_creator
:
Int
static
val
ConstraintLayout_Layout_layout_constraintRight_toLeftOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintRight_toRightOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintStart_toEndOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintStart_toStartOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintTop_creator
:
Int
static
val
ConstraintLayout_Layout_layout_constraintTop_toBottomOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintTop_toTopOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintVertical_bias
:
Int
static
val
ConstraintLayout_Layout_layout_constraintVertical_chainStyle
:
Int
static
val
ConstraintLayout_Layout_layout_constraintVertical_weight
:
Int
static
val
ConstraintLayout_Layout_layout_constraintWidth_default
:
Int
static
val
ConstraintLayout_Layout_layout_constraintWidth_max
:
Int
static
val
ConstraintLayout_Layout_layout_constraintWidth_min
:
Int
static
val
ConstraintLayout_Layout_layout_constraintWidth_percent
:
Int
static
val
ConstraintLayout_Layout_layout_editor_absoluteX
:
Int
static
val
ConstraintLayout_Layout_layout_editor_absoluteY
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginBottom
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginEnd
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginLeft
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginRight
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginStart
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginTop
:
Int
static
val
ConstraintLayout_Layout_layout_optimizationLevel
:
Int
static
val
ConstraintLayout_placeholder
:
IntArray
static
val
ConstraintLayout_placeholder_content
:
Int
static
val
ConstraintLayout_placeholder_emptyVisibility
:
Int
static
val
ConstraintSet
:
IntArray
static
val
ConstraintSet_android_alpha
:
Int
static
val
ConstraintSet_android_elevation
:
Int
static
val
ConstraintSet_android_id
:
Int
static
val
ConstraintSet_android_layout_height
:
Int
static
val
ConstraintSet_android_layout_marginBottom
:
Int
static
val
ConstraintSet_android_layout_marginEnd
:
Int
static
val
ConstraintSet_android_layout_marginLeft
:
Int
static
val
ConstraintSet_android_layout_marginRight
:
Int
static
val
ConstraintSet_android_layout_marginStart
:
Int
static
val
ConstraintSet_android_layout_marginTop
:
Int
static
val
ConstraintSet_android_layout_width
:
Int
static
val
ConstraintSet_android_maxHeight
:
Int
static
val
ConstraintSet_android_maxWidth
:
Int
static
val
ConstraintSet_android_minHeight
:
Int
static
val
ConstraintSet_android_minWidth
:
Int
static
val
ConstraintSet_android_orientation
:
Int
static
val
ConstraintSet_android_rotation
:
Int
static
val
ConstraintSet_android_rotationX
:
Int
static
val
ConstraintSet_android_rotationY
:
Int
static
val
ConstraintSet_android_scaleX
:
Int
static
val
ConstraintSet_android_scaleY
:
Int
static
val
ConstraintSet_android_transformPivotX
:
Int
static
val
ConstraintSet_android_transformPivotY
:
Int
static
val
ConstraintSet_android_translationX
:
Int
static
val
ConstraintSet_android_translationY
:
Int
static
val
ConstraintSet_android_translationZ
:
Int
static
val
ConstraintSet_android_visibility
:
Int
static
val
ConstraintSet_barrierAllowsGoneWidgets
:
Int
static
val
ConstraintSet_barrierDirection
:
Int
static
val
ConstraintSet_chainUseRtl
:
Int
static
val
ConstraintSet_constraint_referenced_ids
:
Int
static
val
ConstraintSet_layout_constrainedHeight
:
Int
static
val
ConstraintSet_layout_constrainedWidth
:
Int
static
val
ConstraintSet_layout_constraintBaseline_creator
:
Int
static
val
ConstraintSet_layout_constraintBaseline_toBaselineOf
:
Int
static
val
ConstraintSet_layout_constraintBottom_creator
:
Int
static
val
ConstraintSet_layout_constraintBottom_toBottomOf
:
Int
static
val
ConstraintSet_layout_constraintBottom_toTopOf
:
Int
static
val
ConstraintSet_layout_constraintCircle
:
Int
static
val
ConstraintSet_layout_constraintCircleAngle
:
Int
static
val
ConstraintSet_layout_constraintCircleRadius
:
Int
static
val
ConstraintSet_layout_constraintDimensionRatio
:
Int
static
val
ConstraintSet_layout_constraintEnd_toEndOf
:
Int
static
val
ConstraintSet_layout_constraintEnd_toStartOf
:
Int
static
val
ConstraintSet_layout_constraintGuide_begin
:
Int
static
val
ConstraintSet_layout_constraintGuide_end
:
Int
static
val
ConstraintSet_layout_constraintGuide_percent
:
Int
static
val
ConstraintSet_layout_constraintHeight_default
:
Int
static
val
ConstraintSet_layout_constraintHeight_max
:
Int
static
val
ConstraintSet_layout_constraintHeight_min
:
Int
static
val
ConstraintSet_layout_constraintHeight_percent
:
Int
static
val
ConstraintSet_layout_constraintHorizontal_bias
:
Int
static
val
ConstraintSet_layout_constraintHorizontal_chainStyle
:
Int
static
val
ConstraintSet_layout_constraintHorizontal_weight
:
Int
static
val
ConstraintSet_layout_constraintLeft_creator
:
Int
static
val
ConstraintSet_layout_constraintLeft_toLeftOf
:
Int
static
val
ConstraintSet_layout_constraintLeft_toRightOf
:
Int
static
val
ConstraintSet_layout_constraintRight_creator
:
Int
static
val
ConstraintSet_layout_constraintRight_toLeftOf
:
Int
static
val
ConstraintSet_layout_constraintRight_toRightOf
:
Int
static
val
ConstraintSet_layout_constraintStart_toEndOf
:
Int
static
val
ConstraintSet_layout_constraintStart_toStartOf
:
Int
static
val
ConstraintSet_layout_constraintTop_creator
:
Int
static
val
ConstraintSet_layout_constraintTop_toBottomOf
:
Int
static
val
ConstraintSet_layout_constraintTop_toTopOf
:
Int
static
val
ConstraintSet_layout_constraintVertical_bias
:
Int
static
val
ConstraintSet_layout_constraintVertical_chainStyle
:
Int
static
val
ConstraintSet_layout_constraintVertical_weight
:
Int
static
val
ConstraintSet_layout_constraintWidth_default
:
Int
static
val
ConstraintSet_layout_constraintWidth_max
:
Int
static
val
ConstraintSet_layout_constraintWidth_min
:
Int
static
val
ConstraintSet_layout_constraintWidth_percent
:
Int
static
val
ConstraintSet_layout_editor_absoluteX
:
Int
static
val
ConstraintSet_layout_editor_absoluteY
:
Int
static
val
ConstraintSet_layout_goneMarginBottom
:
Int
static
val
ConstraintSet_layout_goneMarginEnd
:
Int
static
val
ConstraintSet_layout_goneMarginLeft
:
Int
static
val
ConstraintSet_layout_goneMarginRight
:
Int
static
val
ConstraintSet_layout_goneMarginStart
:
Int
static
val
ConstraintSet_layout_goneMarginTop
:
Int
static
val
LinearConstraintLayout
:
IntArray
static
val
LinearConstraintLayout_android_orientation
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
barrierAllowsGoneWidgets
:
Int
static
val
barrierDirection
:
Int
static
val
chainUseRtl
:
Int
static
val
constraintSet
:
Int
static
val
constraint_referenced_ids
:
Int
static
val
content
:
Int
static
val
emptyVisibility
:
Int
static
val
layout_constrainedHeight
:
Int
static
val
layout_constrainedWidth
:
Int
static
val
layout_constraintBaseline_creator
:
Int
static
val
layout_constraintBaseline_toBaselineOf
:
Int
static
val
layout_constraintBottom_creator
:
Int
static
val
layout_constraintBottom_toBottomOf
:
Int
static
val
layout_constraintBottom_toTopOf
:
Int
static
val
layout_constraintCircle
:
Int
static
val
layout_constraintCircleAngle
:
Int
static
val
layout_constraintCircleRadius
:
Int
static
val
layout_constraintDimensionRatio
:
Int
static
val
layout_constraintEnd_toEndOf
:
Int
static
val
layout_constraintEnd_toStartOf
:
Int
static
val
layout_constraintGuide_begin
:
Int
static
val
layout_constraintGuide_end
:
Int
static
val
layout_constraintGuide_percent
:
Int
static
val
layout_constraintHeight_default
:
Int
static
val
layout_constraintHeight_max
:
Int
static
val
layout_constraintHeight_min
:
Int
static
val
layout_constraintHeight_percent
:
Int
static
val
layout_constraintHorizontal_bias
:
Int
static
val
layout_constraintHorizontal_chainStyle
:
Int
static
val
layout_constraintHorizontal_weight
:
Int
static
val
layout_constraintLeft_creator
:
Int
static
val
layout_constraintLeft_toLeftOf
:
Int
static
val
layout_constraintLeft_toRightOf
:
Int
static
val
layout_constraintRight_creator
:
Int
static
val
layout_constraintRight_toLeftOf
:
Int
static
val
layout_constraintRight_toRightOf
:
Int
static
val
layout_constraintStart_toEndOf
:
Int
static
val
layout_constraintStart_toStartOf
:
Int
static
val
layout_constraintTop_creator
:
Int
static
val
layout_constraintTop_toBottomOf
:
Int
static
val
layout_constraintTop_toTopOf
:
Int
static
val
layout_constraintVertical_bias
:
Int
static
val
layout_constraintVertical_chainStyle
:
Int
static
val
layout_constraintVertical_weight
:
Int
static
val
layout_constraintWidth_default
:
Int
static
val
layout_constraintWidth_max
:
Int
static
val
layout_constraintWidth_min
:
Int
static
val
layout_constraintWidth_percent
:
Int
static
val
layout_editor_absoluteX
:
Int
static
val
layout_editor_absoluteY
:
Int
static
val
layout_goneMarginBottom
:
Int
static
val
layout_goneMarginEnd
:
Int
static
val
layout_goneMarginLeft
:
Int
static
val
layout_goneMarginRight
:
Int
static
val
layout_goneMarginStart
:
Int
static
val
layout_goneMarginTop
:
Int
static
val
layout_optimizationLevel
:
Int
class
id
Module Contents
static
val
bottom
:
Int
static
val
end
:
Int
static
val
gone
:
Int
static
val
invisible
:
Int
static
val
left
:
Int
static
val
packed
:
Int
static
val
parent
:
Int
static
val
percent
:
Int
static
val
right
:
Int
static
val
spread
:
Int
static
val
spread_inside
:
Int
static
val
start
:
Int
static
val
top
:
Int
static
val
wrap
:
Int
class
styleable
Module Contents
static
val
ConstraintLayout_Layout
:
IntArray
static
val
ConstraintLayout_Layout_android_maxHeight
:
Int
static
val
ConstraintLayout_Layout_android_maxWidth
:
Int
static
val
ConstraintLayout_Layout_android_minHeight
:
Int
static
val
ConstraintLayout_Layout_android_minWidth
:
Int
static
val
ConstraintLayout_Layout_android_orientation
:
Int
static
val
ConstraintLayout_Layout_barrierAllowsGoneWidgets
:
Int
static
val
ConstraintLayout_Layout_barrierDirection
:
Int
static
val
ConstraintLayout_Layout_chainUseRtl
:
Int
static
val
ConstraintLayout_Layout_constraintSet
:
Int
static
val
ConstraintLayout_Layout_constraint_referenced_ids
:
Int
static
val
ConstraintLayout_Layout_layout_constrainedHeight
:
Int
static
val
ConstraintLayout_Layout_layout_constrainedWidth
:
Int
static
val
ConstraintLayout_Layout_layout_constraintBaseline_creator
:
Int
static
val
ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintBottom_creator
:
Int
static
val
ConstraintLayout_Layout_layout_constraintBottom_toBottomOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintBottom_toTopOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintCircle
:
Int
static
val
ConstraintLayout_Layout_layout_constraintCircleAngle
:
Int
static
val
ConstraintLayout_Layout_layout_constraintCircleRadius
:
Int
static
val
ConstraintLayout_Layout_layout_constraintDimensionRatio
:
Int
static
val
ConstraintLayout_Layout_layout_constraintEnd_toEndOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintEnd_toStartOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintGuide_begin
:
Int
static
val
ConstraintLayout_Layout_layout_constraintGuide_end
:
Int
static
val
ConstraintLayout_Layout_layout_constraintGuide_percent
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHeight_default
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHeight_max
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHeight_min
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHeight_percent
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHorizontal_bias
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHorizontal_weight
:
Int
static
val
ConstraintLayout_Layout_layout_constraintLeft_creator
:
Int
static
val
ConstraintLayout_Layout_layout_constraintLeft_toLeftOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintLeft_toRightOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintRight_creator
:
Int
static
val
ConstraintLayout_Layout_layout_constraintRight_toLeftOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintRight_toRightOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintStart_toEndOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintStart_toStartOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintTop_creator
:
Int
static
val
ConstraintLayout_Layout_layout_constraintTop_toBottomOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintTop_toTopOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintVertical_bias
:
Int
static
val
ConstraintLayout_Layout_layout_constraintVertical_chainStyle
:
Int
static
val
ConstraintLayout_Layout_layout_constraintVertical_weight
:
Int
static
val
ConstraintLayout_Layout_layout_constraintWidth_default
:
Int
static
val
ConstraintLayout_Layout_layout_constraintWidth_max
:
Int
static
val
ConstraintLayout_Layout_layout_constraintWidth_min
:
Int
static
val
ConstraintLayout_Layout_layout_constraintWidth_percent
:
Int
static
val
ConstraintLayout_Layout_layout_editor_absoluteX
:
Int
static
val
ConstraintLayout_Layout_layout_editor_absoluteY
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginBottom
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginEnd
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginLeft
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginRight
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginStart
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginTop
:
Int
static
val
ConstraintLayout_Layout_layout_optimizationLevel
:
Int
static
val
ConstraintLayout_placeholder
:
IntArray
static
val
ConstraintLayout_placeholder_content
:
Int
static
val
ConstraintLayout_placeholder_emptyVisibility
:
Int
static
val
ConstraintSet
:
IntArray
static
val
ConstraintSet_android_alpha
:
Int
static
val
ConstraintSet_android_elevation
:
Int
static
val
ConstraintSet_android_id
:
Int
static
val
ConstraintSet_android_layout_height
:
Int
static
val
ConstraintSet_android_layout_marginBottom
:
Int
static
val
ConstraintSet_android_layout_marginEnd
:
Int
static
val
ConstraintSet_android_layout_marginLeft
:
Int
static
val
ConstraintSet_android_layout_marginRight
:
Int
static
val
ConstraintSet_android_layout_marginStart
:
Int
static
val
ConstraintSet_android_layout_marginTop
:
Int
static
val
ConstraintSet_android_layout_width
:
Int
static
val
ConstraintSet_android_maxHeight
:
Int
static
val
ConstraintSet_android_maxWidth
:
Int
static
val
ConstraintSet_android_minHeight
:
Int
static
val
ConstraintSet_android_minWidth
:
Int
static
val
ConstraintSet_android_orientation
:
Int
static
val
ConstraintSet_android_rotation
:
Int
static
val
ConstraintSet_android_rotationX
:
Int
static
val
ConstraintSet_android_rotationY
:
Int
static
val
ConstraintSet_android_scaleX
:
Int
static
val
ConstraintSet_android_scaleY
:
Int
static
val
ConstraintSet_android_transformPivotX
:
Int
static
val
ConstraintSet_android_transformPivotY
:
Int
static
val
ConstraintSet_android_translationX
:
Int
static
val
ConstraintSet_android_translationY
:
Int
static
val
ConstraintSet_android_translationZ
:
Int
static
val
ConstraintSet_android_visibility
:
Int
static
val
ConstraintSet_barrierAllowsGoneWidgets
:
Int
static
val
ConstraintSet_barrierDirection
:
Int
static
val
ConstraintSet_chainUseRtl
:
Int
static
val
ConstraintSet_constraint_referenced_ids
:
Int
static
val
ConstraintSet_layout_constrainedHeight
:
Int
static
val
ConstraintSet_layout_constrainedWidth
:
Int
static
val
ConstraintSet_layout_constraintBaseline_creator
:
Int
static
val
ConstraintSet_layout_constraintBaseline_toBaselineOf
:
Int
static
val
ConstraintSet_layout_constraintBottom_creator
:
Int
static
val
ConstraintSet_layout_constraintBottom_toBottomOf
:
Int
static
val
ConstraintSet_layout_constraintBottom_toTopOf
:
Int
static
val
ConstraintSet_layout_constraintCircle
:
Int
static
val
ConstraintSet_layout_constraintCircleAngle
:
Int
static
val
ConstraintSet_layout_constraintCircleRadius
:
Int
static
val
ConstraintSet_layout_constraintDimensionRatio
:
Int
static
val
ConstraintSet_layout_constraintEnd_toEndOf
:
Int
static
val
ConstraintSet_layout_constraintEnd_toStartOf
:
Int
static
val
ConstraintSet_layout_constraintGuide_begin
:
Int
static
val
ConstraintSet_layout_constraintGuide_end
:
Int
static
val
ConstraintSet_layout_constraintGuide_percent
:
Int
static
val
ConstraintSet_layout_constraintHeight_default
:
Int
static
val
ConstraintSet_layout_constraintHeight_max
:
Int
static
val
ConstraintSet_layout_constraintHeight_min
:
Int
static
val
ConstraintSet_layout_constraintHeight_percent
:
Int
static
val
ConstraintSet_layout_constraintHorizontal_bias
:
Int
static
val
ConstraintSet_layout_constraintHorizontal_chainStyle
:
Int
static
val
ConstraintSet_layout_constraintHorizontal_weight
:
Int
static
val
ConstraintSet_layout_constraintLeft_creator
:
Int
static
val
ConstraintSet_layout_constraintLeft_toLeftOf
:
Int
static
val
ConstraintSet_layout_constraintLeft_toRightOf
:
Int
static
val
ConstraintSet_layout_constraintRight_creator
:
Int
static
val
ConstraintSet_layout_constraintRight_toLeftOf
:
Int
static
val
ConstraintSet_layout_constraintRight_toRightOf
:
Int
static
val
ConstraintSet_layout_constraintStart_toEndOf
:
Int
static
val
ConstraintSet_layout_constraintStart_toStartOf
:
Int
static
val
ConstraintSet_layout_constraintTop_creator
:
Int
static
val
ConstraintSet_layout_constraintTop_toBottomOf
:
Int
static
val
ConstraintSet_layout_constraintTop_toTopOf
:
Int
static
val
ConstraintSet_layout_constraintVertical_bias
:
Int
static
val
ConstraintSet_layout_constraintVertical_chainStyle
:
Int
static
val
ConstraintSet_layout_constraintVertical_weight
:
Int
static
val
ConstraintSet_layout_constraintWidth_default
:
Int
static
val
ConstraintSet_layout_constraintWidth_max
:
Int
static
val
ConstraintSet_layout_constraintWidth_min
:
Int
static
val
ConstraintSet_layout_constraintWidth_percent
:
Int
static
val
ConstraintSet_layout_editor_absoluteX
:
Int
static
val
ConstraintSet_layout_editor_absoluteY
:
Int
static
val
ConstraintSet_layout_goneMarginBottom
:
Int
static
val
ConstraintSet_layout_goneMarginEnd
:
Int
static
val
ConstraintSet_layout_goneMarginLeft
:
Int
static
val
ConstraintSet_layout_goneMarginRight
:
Int
static
val
ConstraintSet_layout_goneMarginStart
:
Int
static
val
ConstraintSet_layout_goneMarginTop
:
Int
static
val
LinearConstraintLayout
:
IntArray
static
val
LinearConstraintLayout_android_orientation
:
Int
package
android.support.coordinatorlayout
Module Contents
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
coordinatorLayoutStyle
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
keylines
:
Int
static
val
layout_anchor
:
Int
static
val
layout_anchorGravity
:
Int
static
val
layout_behavior
:
Int
static
val
layout_dodgeInsetEdges
:
Int
static
val
layout_insetEdge
:
Int
static
val
layout_keyline
:
Int
static
val
statusBarBackground
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
bottom
:
Int
static
val
chronometer
:
Int
static
val
end
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
left
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
none
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
start
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
static
val
top
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
static
val
Widget_Support_CoordinatorLayout
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
CoordinatorLayout
:
IntArray
static
val
CoordinatorLayout_Layout
:
IntArray
static
val
CoordinatorLayout_Layout_android_layout_gravity
:
Int
static
val
CoordinatorLayout_Layout_layout_anchor
:
Int
static
val
CoordinatorLayout_Layout_layout_anchorGravity
:
Int
static
val
CoordinatorLayout_Layout_layout_behavior
:
Int
static
val
CoordinatorLayout_Layout_layout_dodgeInsetEdges
:
Int
static
val
CoordinatorLayout_Layout_layout_insetEdge
:
Int
static
val
CoordinatorLayout_Layout_layout_keyline
:
Int
static
val
CoordinatorLayout_keylines
:
Int
static
val
CoordinatorLayout_statusBarBackground
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
coordinatorLayoutStyle
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
keylines
:
Int
static
val
layout_anchor
:
Int
static
val
layout_anchorGravity
:
Int
static
val
layout_behavior
:
Int
static
val
layout_dodgeInsetEdges
:
Int
static
val
layout_insetEdge
:
Int
static
val
layout_keyline
:
Int
static
val
statusBarBackground
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
bottom
:
Int
static
val
chronometer
:
Int
static
val
end
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
left
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
none
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
start
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
static
val
top
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
static
val
Widget_Support_CoordinatorLayout
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
CoordinatorLayout
:
IntArray
static
val
CoordinatorLayout_Layout
:
IntArray
static
val
CoordinatorLayout_Layout_android_layout_gravity
:
Int
static
val
CoordinatorLayout_Layout_layout_anchor
:
Int
static
val
CoordinatorLayout_Layout_layout_anchorGravity
:
Int
static
val
CoordinatorLayout_Layout_layout_behavior
:
Int
static
val
CoordinatorLayout_Layout_layout_dodgeInsetEdges
:
Int
static
val
CoordinatorLayout_Layout_layout_insetEdge
:
Int
static
val
CoordinatorLayout_Layout_layout_keyline
:
Int
static
val
CoordinatorLayout_keylines
:
Int
static
val
CoordinatorLayout_statusBarBackground
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
package
android.support.coreui
Module Contents
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
coordinatorLayoutStyle
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
keylines
:
Int
static
val
layout_anchor
:
Int
static
val
layout_anchorGravity
:
Int
static
val
layout_behavior
:
Int
static
val
layout_dodgeInsetEdges
:
Int
static
val
layout_insetEdge
:
Int
static
val
layout_keyline
:
Int
static
val
statusBarBackground
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
bottom
:
Int
static
val
chronometer
:
Int
static
val
end
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
left
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
none
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
start
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
static
val
top
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
static
val
Widget_Support_CoordinatorLayout
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
CoordinatorLayout
:
IntArray
static
val
CoordinatorLayout_Layout
:
IntArray
static
val
CoordinatorLayout_Layout_android_layout_gravity
:
Int
static
val
CoordinatorLayout_Layout_layout_anchor
:
Int
static
val
CoordinatorLayout_Layout_layout_anchorGravity
:
Int
static
val
CoordinatorLayout_Layout_layout_behavior
:
Int
static
val
CoordinatorLayout_Layout_layout_dodgeInsetEdges
:
Int
static
val
CoordinatorLayout_Layout_layout_insetEdge
:
Int
static
val
CoordinatorLayout_Layout_layout_keyline
:
Int
static
val
CoordinatorLayout_keylines
:
Int
static
val
CoordinatorLayout_statusBarBackground
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
coordinatorLayoutStyle
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
keylines
:
Int
static
val
layout_anchor
:
Int
static
val
layout_anchorGravity
:
Int
static
val
layout_behavior
:
Int
static
val
layout_dodgeInsetEdges
:
Int
static
val
layout_insetEdge
:
Int
static
val
layout_keyline
:
Int
static
val
statusBarBackground
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
bottom
:
Int
static
val
chronometer
:
Int
static
val
end
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
left
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
none
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
start
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
static
val
top
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
static
val
Widget_Support_CoordinatorLayout
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
CoordinatorLayout
:
IntArray
static
val
CoordinatorLayout_Layout
:
IntArray
static
val
CoordinatorLayout_Layout_android_layout_gravity
:
Int
static
val
CoordinatorLayout_Layout_layout_anchor
:
Int
static
val
CoordinatorLayout_Layout_layout_anchorGravity
:
Int
static
val
CoordinatorLayout_Layout_layout_behavior
:
Int
static
val
CoordinatorLayout_Layout_layout_dodgeInsetEdges
:
Int
static
val
CoordinatorLayout_Layout_layout_insetEdge
:
Int
static
val
CoordinatorLayout_Layout_layout_keyline
:
Int
static
val
CoordinatorLayout_keylines
:
Int
static
val
CoordinatorLayout_statusBarBackground
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
package
android.support.coreutils
Module Contents
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
package
android.support.cursoradapter
Module Contents
class
R
class
R
package
android.support.customview
Module Contents
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
package
android.support.design
Module Contents
class
R
Module Contents
class
anim
Module Contents
static
val
abc_fade_in
:
Int
static
val
abc_fade_out
:
Int
static
val
abc_grow_fade_in_from_bottom
:
Int
static
val
abc_popup_enter
:
Int
static
val
abc_popup_exit
:
Int
static
val
abc_shrink_fade_out_from_bottom
:
Int
static
val
abc_slide_in_bottom
:
Int
static
val
abc_slide_in_top
:
Int
static
val
abc_slide_out_bottom
:
Int
static
val
abc_slide_out_top
:
Int
static
val
abc_tooltip_enter
:
Int
static
val
abc_tooltip_exit
:
Int
static
val
design_bottom_sheet_slide_in
:
Int
static
val
design_bottom_sheet_slide_out
:
Int
static
val
design_snackbar_in
:
Int
static
val
design_snackbar_out
:
Int
class
animator
Module Contents
static
val
design_appbar_state_list_animator
:
Int
static
val
design_fab_hide_motion_spec
:
Int
static
val
design_fab_show_motion_spec
:
Int
static
val
mtrl_btn_state_list_anim
:
Int
static
val
mtrl_btn_unelevated_state_list_anim
:
Int
static
val
mtrl_chip_state_list_anim
:
Int
static
val
mtrl_fab_hide_motion_spec
:
Int
static
val
mtrl_fab_show_motion_spec
:
Int
static
val
mtrl_fab_transformation_sheet_collapse_spec
:
Int
static
val
mtrl_fab_transformation_sheet_expand_spec
:
Int
class
attr
Module Contents
static
val
actionBarDivider
:
Int
static
val
actionBarItemBackground
:
Int
static
val
actionBarPopupTheme
:
Int
static
val
actionBarSize
:
Int
static
val
actionBarSplitStyle
:
Int
static
val
actionBarStyle
:
Int
static
val
actionBarTabBarStyle
:
Int
static
val
actionBarTabStyle
:
Int
static
val
actionBarTabTextStyle
:
Int
static
val
actionBarTheme
:
Int
static
val
actionBarWidgetTheme
:
Int
static
val
actionButtonStyle
:
Int
static
val
actionDropDownStyle
:
Int
static
val
actionLayout
:
Int
static
val
actionMenuTextAppearance
:
Int
static
val
actionMenuTextColor
:
Int
static
val
actionModeBackground
:
Int
static
val
actionModeCloseButtonStyle
:
Int
static
val
actionModeCloseDrawable
:
Int
static
val
actionModeCopyDrawable
:
Int
static
val
actionModeCutDrawable
:
Int
static
val
actionModeFindDrawable
:
Int
static
val
actionModePasteDrawable
:
Int
static
val
actionModePopupWindowStyle
:
Int
static
val
actionModeSelectAllDrawable
:
Int
static
val
actionModeShareDrawable
:
Int
static
val
actionModeSplitBackground
:
Int
static
val
actionModeStyle
:
Int
static
val
actionModeWebSearchDrawable
:
Int
static
val
actionOverflowButtonStyle
:
Int
static
val
actionOverflowMenuStyle
:
Int
static
val
actionProviderClass
:
Int
static
val
actionViewClass
:
Int
static
val
activityChooserViewStyle
:
Int
static
val
alertDialogButtonGroupStyle
:
Int
static
val
alertDialogCenterButtons
:
Int
static
val
alertDialogStyle
:
Int
static
val
alertDialogTheme
:
Int
static
val
allowStacking
:
Int
static
val
alpha
:
Int
static
val
alphabeticModifiers
:
Int
static
val
arrowHeadLength
:
Int
static
val
arrowShaftLength
:
Int
static
val
autoCompleteTextViewStyle
:
Int
static
val
autoSizeMaxTextSize
:
Int
static
val
autoSizeMinTextSize
:
Int
static
val
autoSizePresetSizes
:
Int
static
val
autoSizeStepGranularity
:
Int
static
val
autoSizeTextType
:
Int
static
val
background
:
Int
static
val
backgroundSplit
:
Int
static
val
backgroundStacked
:
Int
static
val
backgroundTint
:
Int
static
val
backgroundTintMode
:
Int
static
val
barLength
:
Int
static
val
behavior_autoHide
:
Int
static
val
behavior_fitToContents
:
Int
static
val
behavior_hideable
:
Int
static
val
behavior_overlapTop
:
Int
static
val
behavior_peekHeight
:
Int
static
val
behavior_skipCollapsed
:
Int
static
val
borderWidth
:
Int
static
val
borderlessButtonStyle
:
Int
static
val
bottomAppBarStyle
:
Int
static
val
bottomNavigationStyle
:
Int
static
val
bottomSheetDialogTheme
:
Int
static
val
bottomSheetStyle
:
Int
static
val
boxBackgroundColor
:
Int
static
val
boxBackgroundMode
:
Int
static
val
boxCollapsedPaddingTop
:
Int
static
val
boxCornerRadiusBottomEnd
:
Int
static
val
boxCornerRadiusBottomStart
:
Int
static
val
boxCornerRadiusTopEnd
:
Int
static
val
boxCornerRadiusTopStart
:
Int
static
val
boxStrokeColor
:
Int
static
val
boxStrokeWidth
:
Int
static
val
buttonBarButtonStyle
:
Int
static
val
buttonBarNegativeButtonStyle
:
Int
static
val
buttonBarNeutralButtonStyle
:
Int
static
val
buttonBarPositiveButtonStyle
:
Int
static
val
buttonBarStyle
:
Int
static
val
buttonGravity
:
Int
static
val
buttonIconDimen
:
Int
static
val
buttonPanelSideLayout
:
Int
static
val
buttonStyle
:
Int
static
val
buttonStyleSmall
:
Int
static
val
buttonTint
:
Int
static
val
buttonTintMode
:
Int
static
val
cardBackgroundColor
:
Int
static
val
cardCornerRadius
:
Int
static
val
cardElevation
:
Int
static
val
cardMaxElevation
:
Int
static
val
cardPreventCornerOverlap
:
Int
static
val
cardUseCompatPadding
:
Int
static
val
cardViewStyle
:
Int
static
val
checkboxStyle
:
Int
static
val
checkedChip
:
Int
static
val
checkedIcon
:
Int
static
val
checkedIconEnabled
:
Int
static
val
checkedIconVisible
:
Int
static
val
checkedTextViewStyle
:
Int
static
val
chipBackgroundColor
:
Int
static
val
chipCornerRadius
:
Int
static
val
chipEndPadding
:
Int
static
val
chipGroupStyle
:
Int
static
val
chipIcon
:
Int
static
val
chipIconEnabled
:
Int
static
val
chipIconSize
:
Int
static
val
chipIconTint
:
Int
static
val
chipIconVisible
:
Int
static
val
chipMinHeight
:
Int
static
val
chipSpacing
:
Int
static
val
chipSpacingHorizontal
:
Int
static
val
chipSpacingVertical
:
Int
static
val
chipStandaloneStyle
:
Int
static
val
chipStartPadding
:
Int
static
val
chipStrokeColor
:
Int
static
val
chipStrokeWidth
:
Int
static
val
chipStyle
:
Int
static
val
closeIcon
:
Int
static
val
closeIconEnabled
:
Int
static
val
closeIconEndPadding
:
Int
static
val
closeIconSize
:
Int
static
val
closeIconStartPadding
:
Int
static
val
closeIconTint
:
Int
static
val
closeIconVisible
:
Int
static
val
closeItemLayout
:
Int
static
val
collapseContentDescription
:
Int
static
val
collapseIcon
:
Int
static
val
collapsedTitleGravity
:
Int
static
val
collapsedTitleTextAppearance
:
Int
static
val
color
:
Int
static
val
colorAccent
:
Int
static
val
colorBackgroundFloating
:
Int
static
val
colorButtonNormal
:
Int
static
val
colorControlActivated
:
Int
static
val
colorControlHighlight
:
Int
static
val
colorControlNormal
:
Int
static
val
colorError
:
Int
static
val
colorPrimary
:
Int
static
val
colorPrimaryDark
:
Int
static
val
colorSecondary
:
Int
static
val
colorSwitchThumbNormal
:
Int
static
val
commitIcon
:
Int
static
val
contentDescription
:
Int
static
val
contentInsetEnd
:
Int
static
val
contentInsetEndWithActions
:
Int
static
val
contentInsetLeft
:
Int
static
val
contentInsetRight
:
Int
static
val
contentInsetStart
:
Int
static
val
contentInsetStartWithNavigation
:
Int
static
val
contentPadding
:
Int
static
val
contentPaddingBottom
:
Int
static
val
contentPaddingLeft
:
Int
static
val
contentPaddingRight
:
Int
static
val
contentPaddingTop
:
Int
static
val
contentScrim
:
Int
static
val
controlBackground
:
Int
static
val
coordinatorLayoutStyle
:
Int
static
val
cornerRadius
:
Int
static
val
counterEnabled
:
Int
static
val
counterMaxLength
:
Int
static
val
counterOverflowTextAppearance
:
Int
static
val
counterTextAppearance
:
Int
static
val
customNavigationLayout
:
Int
static
val
defaultQueryHint
:
Int
static
val
dialogCornerRadius
:
Int
static
val
dialogPreferredPadding
:
Int
static
val
dialogTheme
:
Int
static
val
displayOptions
:
Int
static
val
divider
:
Int
static
val
dividerHorizontal
:
Int
static
val
dividerPadding
:
Int
static
val
dividerVertical
:
Int
static
val
drawableSize
:
Int
static
val
drawerArrowStyle
:
Int
static
val
dropDownListViewStyle
:
Int
static
val
dropdownListPreferredItemHeight
:
Int
static
val
editTextBackground
:
Int
static
val
editTextColor
:
Int
static
val
editTextStyle
:
Int
static
val
elevation
:
Int
static
val
enforceMaterialTheme
:
Int
static
val
enforceTextAppearance
:
Int
static
val
errorEnabled
:
Int
static
val
errorTextAppearance
:
Int
static
val
expandActivityOverflowButtonDrawable
:
Int
static
val
expanded
:
Int
static
val
expandedTitleGravity
:
Int
static
val
expandedTitleMargin
:
Int
static
val
expandedTitleMarginBottom
:
Int
static
val
expandedTitleMarginEnd
:
Int
static
val
expandedTitleMarginStart
:
Int
static
val
expandedTitleMarginTop
:
Int
static
val
expandedTitleTextAppearance
:
Int
static
val
fabAlignmentMode
:
Int
static
val
fabCradleMargin
:
Int
static
val
fabCradleRoundedCornerRadius
:
Int
static
val
fabCradleVerticalOffset
:
Int
static
val
fabCustomSize
:
Int
static
val
fabSize
:
Int
static
val
fastScrollEnabled
:
Int
static
val
fastScrollHorizontalThumbDrawable
:
Int
static
val
fastScrollHorizontalTrackDrawable
:
Int
static
val
fastScrollVerticalThumbDrawable
:
Int
static
val
fastScrollVerticalTrackDrawable
:
Int
static
val
firstBaselineToTopHeight
:
Int
static
val
floatingActionButtonStyle
:
Int
static
val
font
:
Int
static
val
fontFamily
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
foregroundInsidePadding
:
Int
static
val
gapBetweenBars
:
Int
static
val
goIcon
:
Int
static
val
headerLayout
:
Int
static
val
height
:
Int
static
val
helperText
:
Int
static
val
helperTextEnabled
:
Int
static
val
helperTextTextAppearance
:
Int
static
val
hideMotionSpec
:
Int
static
val
hideOnContentScroll
:
Int
static
val
hideOnScroll
:
Int
static
val
hintAnimationEnabled
:
Int
static
val
hintEnabled
:
Int
static
val
hintTextAppearance
:
Int
static
val
homeAsUpIndicator
:
Int
static
val
homeLayout
:
Int
static
val
hoveredFocusedTranslationZ
:
Int
static
val
icon
:
Int
static
val
iconEndPadding
:
Int
static
val
iconGravity
:
Int
static
val
iconPadding
:
Int
static
val
iconSize
:
Int
static
val
iconStartPadding
:
Int
static
val
iconTint
:
Int
static
val
iconTintMode
:
Int
static
val
iconifiedByDefault
:
Int
static
val
imageButtonStyle
:
Int
static
val
indeterminateProgressStyle
:
Int
static
val
initialActivityCount
:
Int
static
val
insetForeground
:
Int
static
val
isLightTheme
:
Int
static
val
itemBackground
:
Int
static
val
itemHorizontalPadding
:
Int
static
val
itemHorizontalTranslationEnabled
:
Int
static
val
itemIconPadding
:
Int
static
val
itemIconSize
:
Int
static
val
itemIconTint
:
Int
static
val
itemPadding
:
Int
static
val
itemSpacing
:
Int
static
val
itemTextAppearance
:
Int
static
val
itemTextAppearanceActive
:
Int
static
val
itemTextAppearanceInactive
:
Int
static
val
itemTextColor
:
Int
static
val
keylines
:
Int
static
val
labelVisibilityMode
:
Int
static
val
lastBaselineToBottomHeight
:
Int
static
val
layout
:
Int
static
val
layoutManager
:
Int
static
val
layout_anchor
:
Int
static
val
layout_anchorGravity
:
Int
static
val
layout_behavior
:
Int
static
val
layout_collapseMode
:
Int
static
val
layout_collapseParallaxMultiplier
:
Int
static
val
layout_dodgeInsetEdges
:
Int
static
val
layout_insetEdge
:
Int
static
val
layout_keyline
:
Int
static
val
layout_scrollFlags
:
Int
static
val
layout_scrollInterpolator
:
Int
static
val
liftOnScroll
:
Int
static
val
lineHeight
:
Int
static
val
lineSpacing
:
Int
static
val
listChoiceBackgroundIndicator
:
Int
static
val
listDividerAlertDialog
:
Int
static
val
listItemLayout
:
Int
static
val
listLayout
:
Int
static
val
listMenuViewStyle
:
Int
static
val
listPopupWindowStyle
:
Int
static
val
listPreferredItemHeight
:
Int
static
val
listPreferredItemHeightLarge
:
Int
static
val
listPreferredItemHeightSmall
:
Int
static
val
listPreferredItemPaddingLeft
:
Int
static
val
listPreferredItemPaddingRight
:
Int
static
val
logo
:
Int
static
val
logoDescription
:
Int
static
val
materialButtonStyle
:
Int
static
val
materialCardViewStyle
:
Int
static
val
maxActionInlineWidth
:
Int
static
val
maxButtonHeight
:
Int
static
val
maxImageSize
:
Int
static
val
measureWithLargestChild
:
Int
static
val
menu
:
Int
static
val
multiChoiceItemLayout
:
Int
static
val
navigationContentDescription
:
Int
static
val
navigationIcon
:
Int
static
val
navigationMode
:
Int
static
val
navigationViewStyle
:
Int
static
val
numericModifiers
:
Int
static
val
overlapAnchor
:
Int
static
val
paddingBottomNoButtons
:
Int
static
val
paddingEnd
:
Int
static
val
paddingStart
:
Int
static
val
paddingTopNoTitle
:
Int
static
val
panelBackground
:
Int
static
val
panelMenuListTheme
:
Int
static
val
panelMenuListWidth
:
Int
static
val
passwordToggleContentDescription
:
Int
static
val
passwordToggleDrawable
:
Int
static
val
passwordToggleEnabled
:
Int
static
val
passwordToggleTint
:
Int
static
val
passwordToggleTintMode
:
Int
static
val
popupMenuStyle
:
Int
static
val
popupTheme
:
Int
static
val
popupWindowStyle
:
Int
static
val
preserveIconSpacing
:
Int
static
val
pressedTranslationZ
:
Int
static
val
progressBarPadding
:
Int
static
val
progressBarStyle
:
Int
static
val
queryBackground
:
Int
static
val
queryHint
:
Int
static
val
radioButtonStyle
:
Int
static
val
ratingBarStyle
:
Int
static
val
ratingBarStyleIndicator
:
Int
static
val
ratingBarStyleSmall
:
Int
static
val
reverseLayout
:
Int
static
val
rippleColor
:
Int
static
val
scrimAnimationDuration
:
Int
static
val
scrimBackground
:
Int
static
val
scrimVisibleHeightTrigger
:
Int
static
val
searchHintIcon
:
Int
static
val
searchIcon
:
Int
static
val
searchViewStyle
:
Int
static
val
seekBarStyle
:
Int
static
val
selectableItemBackground
:
Int
static
val
selectableItemBackgroundBorderless
:
Int
static
val
showAsAction
:
Int
static
val
showDividers
:
Int
static
val
showMotionSpec
:
Int
static
val
showText
:
Int
static
val
showTitle
:
Int
static
val
singleChoiceItemLayout
:
Int
static
val
singleLine
:
Int
static
val
singleSelection
:
Int
static
val
snackbarButtonStyle
:
Int
static
val
snackbarStyle
:
Int
static
val
spanCount
:
Int
static
val
spinBars
:
Int
static
val
spinnerDropDownItemStyle
:
Int
static
val
spinnerStyle
:
Int
static
val
splitTrack
:
Int
static
val
srcCompat
:
Int
static
val
stackFromEnd
:
Int
static
val
state_above_anchor
:
Int
static
val
state_collapsed
:
Int
static
val
state_collapsible
:
Int
static
val
state_liftable
:
Int
static
val
state_lifted
:
Int
static
val
statusBarBackground
:
Int
static
val
statusBarScrim
:
Int
static
val
strokeColor
:
Int
static
val
strokeWidth
:
Int
static
val
subMenuArrow
:
Int
static
val
submitBackground
:
Int
static
val
subtitle
:
Int
static
val
subtitleTextAppearance
:
Int
static
val
subtitleTextColor
:
Int
static
val
subtitleTextStyle
:
Int
static
val
suggestionRowLayout
:
Int
static
val
switchMinWidth
:
Int
static
val
switchPadding
:
Int
static
val
switchStyle
:
Int
static
val
switchTextAppearance
:
Int
static
val
tabBackground
:
Int
static
val
tabContentStart
:
Int
static
val
tabGravity
:
Int
static
val
tabIconTint
:
Int
static
val
tabIconTintMode
:
Int
static
val
tabIndicator
:
Int
static
val
tabIndicatorAnimationDuration
:
Int
static
val
tabIndicatorColor
:
Int
static
val
tabIndicatorFullWidth
:
Int
static
val
tabIndicatorGravity
:
Int
static
val
tabIndicatorHeight
:
Int
static
val
tabInlineLabel
:
Int
static
val
tabMaxWidth
:
Int
static
val
tabMinWidth
:
Int
static
val
tabMode
:
Int
static
val
tabPadding
:
Int
static
val
tabPaddingBottom
:
Int
static
val
tabPaddingEnd
:
Int
static
val
tabPaddingStart
:
Int
static
val
tabPaddingTop
:
Int
static
val
tabRippleColor
:
Int
static
val
tabSelectedTextColor
:
Int
static
val
tabStyle
:
Int
static
val
tabTextAppearance
:
Int
static
val
tabTextColor
:
Int
static
val
tabUnboundedRipple
:
Int
static
val
textAllCaps
:
Int
static
val
textAppearanceBody1
:
Int
static
val
textAppearanceBody2
:
Int
static
val
textAppearanceButton
:
Int
static
val
textAppearanceCaption
:
Int
static
val
textAppearanceHeadline1
:
Int
static
val
textAppearanceHeadline2
:
Int
static
val
textAppearanceHeadline3
:
Int
static
val
textAppearanceHeadline4
:
Int
static
val
textAppearanceHeadline5
:
Int
static
val
textAppearanceHeadline6
:
Int
static
val
textAppearanceLargePopupMenu
:
Int
static
val
textAppearanceListItem
:
Int
static
val
textAppearanceListItemSecondary
:
Int
static
val
textAppearanceListItemSmall
:
Int
static
val
textAppearanceOverline
:
Int
static
val
textAppearancePopupMenuHeader
:
Int
static
val
textAppearanceSearchResultSubtitle
:
Int
static
val
textAppearanceSearchResultTitle
:
Int
static
val
textAppearanceSmallPopupMenu
:
Int
static
val
textAppearanceSubtitle1
:
Int
static
val
textAppearanceSubtitle2
:
Int
static
val
textColorAlertDialogListItem
:
Int
static
val
textColorSearchUrl
:
Int
static
val
textEndPadding
:
Int
static
val
textInputStyle
:
Int
static
val
textStartPadding
:
Int
static
val
theme
:
Int
static
val
thickness
:
Int
static
val
thumbTextPadding
:
Int
static
val
thumbTint
:
Int
static
val
thumbTintMode
:
Int
static
val
tickMark
:
Int
static
val
tickMarkTint
:
Int
static
val
tickMarkTintMode
:
Int
static
val
tint
:
Int
static
val
tintMode
:
Int
static
val
title
:
Int
static
val
titleEnabled
:
Int
static
val
titleMargin
:
Int
static
val
titleMarginBottom
:
Int
static
val
titleMarginEnd
:
Int
static
val
titleMarginStart
:
Int
static
val
titleMarginTop
:
Int
static
val
titleMargins
:
Int
static
val
titleTextAppearance
:
Int
static
val
titleTextColor
:
Int
static
val
titleTextStyle
:
Int
static
val
toolbarId
:
Int
static
val
toolbarNavigationButtonStyle
:
Int
static
val
toolbarStyle
:
Int
static
val
tooltipForegroundColor
:
Int
static
val
tooltipFrameBackground
:
Int
static
val
tooltipText
:
Int
static
val
track
:
Int
static
val
trackTint
:
Int
static
val
trackTintMode
:
Int
static
val
ttcIndex
:
Int
static
val
useCompatPadding
:
Int
static
val
viewInflaterClass
:
Int
static
val
voiceIcon
:
Int
static
val
windowActionBar
:
Int
static
val
windowActionBarOverlay
:
Int
static
val
windowActionModeOverlay
:
Int
static
val
windowFixedHeightMajor
:
Int
static
val
windowFixedHeightMinor
:
Int
static
val
windowFixedWidthMajor
:
Int
static
val
windowFixedWidthMinor
:
Int
static
val
windowMinWidthMajor
:
Int
static
val
windowMinWidthMinor
:
Int
static
val
windowNoTitle
:
Int
class
bool
Module Contents
static
val
abc_action_bar_embed_tabs
:
Int
static
val
abc_allow_stacked_button_bar
:
Int
static
val
abc_config_actionMenuItemAllCaps
:
Int
static
val
mtrl_btn_textappearance_all_caps
:
Int
class
color
Module Contents
static
val
abc_background_cache_hint_selector_material_dark
:
Int
static
val
abc_background_cache_hint_selector_material_light
:
Int
static
val
abc_btn_colored_borderless_text_material
:
Int
static
val
abc_btn_colored_text_material
:
Int
static
val
abc_color_highlight_material
:
Int
static
val
abc_hint_foreground_material_dark
:
Int
static
val
abc_hint_foreground_material_light
:
Int
static
val
abc_input_method_navigation_guard
:
Int
static
val
abc_primary_text_disable_only_material_dark
:
Int
static
val
abc_primary_text_disable_only_material_light
:
Int
static
val
abc_primary_text_material_dark
:
Int
static
val
abc_primary_text_material_light
:
Int
static
val
abc_search_url_text
:
Int
static
val
abc_search_url_text_normal
:
Int
static
val
abc_search_url_text_pressed
:
Int
static
val
abc_search_url_text_selected
:
Int
static
val
abc_secondary_text_material_dark
:
Int
static
val
abc_secondary_text_material_light
:
Int
static
val
abc_tint_btn_checkable
:
Int
static
val
abc_tint_default
:
Int
static
val
abc_tint_edittext
:
Int
static
val
abc_tint_seek_thumb
:
Int
static
val
abc_tint_spinner
:
Int
static
val
abc_tint_switch_track
:
Int
static
val
accent_material_dark
:
Int
static
val
accent_material_light
:
Int
static
val
background_floating_material_dark
:
Int
static
val
background_floating_material_light
:
Int
static
val
background_material_dark
:
Int
static
val
background_material_light
:
Int
static
val
bright_foreground_disabled_material_dark
:
Int
static
val
bright_foreground_disabled_material_light
:
Int
static
val
bright_foreground_inverse_material_dark
:
Int
static
val
bright_foreground_inverse_material_light
:
Int
static
val
bright_foreground_material_dark
:
Int
static
val
bright_foreground_material_light
:
Int
static
val
button_material_dark
:
Int
static
val
button_material_light
:
Int
static
val
cardview_dark_background
:
Int
static
val
cardview_light_background
:
Int
static
val
cardview_shadow_end_color
:
Int
static
val
cardview_shadow_start_color
:
Int
static
val
design_bottom_navigation_shadow_color
:
Int
static
val
design_default_color_primary
:
Int
static
val
design_default_color_primary_dark
:
Int
static
val
design_error
:
Int
static
val
design_fab_shadow_end_color
:
Int
static
val
design_fab_shadow_mid_color
:
Int
static
val
design_fab_shadow_start_color
:
Int
static
val
design_fab_stroke_end_inner_color
:
Int
static
val
design_fab_stroke_end_outer_color
:
Int
static
val
design_fab_stroke_top_inner_color
:
Int
static
val
design_fab_stroke_top_outer_color
:
Int
static
val
design_snackbar_background_color
:
Int
static
val
design_tint_password_toggle
:
Int
static
val
dim_foreground_disabled_material_dark
:
Int
static
val
dim_foreground_disabled_material_light
:
Int
static
val
dim_foreground_material_dark
:
Int
static
val
dim_foreground_material_light
:
Int
static
val
error_color_material_dark
:
Int
static
val
error_color_material_light
:
Int
static
val
foreground_material_dark
:
Int
static
val
foreground_material_light
:
Int
static
val
highlighted_text_material_dark
:
Int
static
val
highlighted_text_material_light
:
Int
static
val
material_blue_grey_800
:
Int
static
val
material_blue_grey_900
:
Int
static
val
material_blue_grey_950
:
Int
static
val
material_deep_teal_200
:
Int
static
val
material_deep_teal_500
:
Int
static
val
material_grey_100
:
Int
static
val
material_grey_300
:
Int
static
val
material_grey_50
:
Int
static
val
material_grey_600
:
Int
static
val
material_grey_800
:
Int
static
val
material_grey_850
:
Int
static
val
material_grey_900
:
Int
static
val
mtrl_bottom_nav_colored_item_tint
:
Int
static
val
mtrl_bottom_nav_item_tint
:
Int
static
val
mtrl_btn_bg_color_disabled
:
Int
static
val
mtrl_btn_bg_color_selector
:
Int
static
val
mtrl_btn_ripple_color
:
Int
static
val
mtrl_btn_stroke_color_selector
:
Int
static
val
mtrl_btn_text_btn_ripple_color
:
Int
static
val
mtrl_btn_text_color_disabled
:
Int
static
val
mtrl_btn_text_color_selector
:
Int
static
val
mtrl_btn_transparent_bg_color
:
Int
static
val
mtrl_chip_background_color
:
Int
static
val
mtrl_chip_close_icon_tint
:
Int
static
val
mtrl_chip_ripple_color
:
Int
static
val
mtrl_chip_text_color
:
Int
static
val
mtrl_fab_ripple_color
:
Int
static
val
mtrl_scrim_color
:
Int
static
val
mtrl_tabs_colored_ripple_color
:
Int
static
val
mtrl_tabs_icon_color_selector
:
Int
static
val
mtrl_tabs_icon_color_selector_colored
:
Int
static
val
mtrl_tabs_legacy_text_color_selector
:
Int
static
val
mtrl_tabs_ripple_color
:
Int
static
val
mtrl_text_btn_text_color_selector
:
Int
static
val
mtrl_textinput_default_box_stroke_color
:
Int
static
val
mtrl_textinput_disabled_color
:
Int
static
val
mtrl_textinput_filled_box_default_background_color
:
Int
static
val
mtrl_textinput_hovered_box_stroke_color
:
Int
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
primary_dark_material_dark
:
Int
static
val
primary_dark_material_light
:
Int
static
val
primary_material_dark
:
Int
static
val
primary_material_light
:
Int
static
val
primary_text_default_material_dark
:
Int
static
val
primary_text_default_material_light
:
Int
static
val
primary_text_disabled_material_dark
:
Int
static
val
primary_text_disabled_material_light
:
Int
static
val
ripple_material_dark
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_dark
:
Int
static
val
secondary_text_default_material_light
:
Int
static
val
secondary_text_disabled_material_dark
:
Int
static
val
secondary_text_disabled_material_light
:
Int
static
val
switch_thumb_disabled_material_dark
:
Int
static
val
switch_thumb_disabled_material_light
:
Int
static
val
switch_thumb_material_dark
:
Int
static
val
switch_thumb_material_light
:
Int
static
val
switch_thumb_normal_material_dark
:
Int
static
val
switch_thumb_normal_material_light
:
Int
static
val
tooltip_background_dark
:
Int
static
val
tooltip_background_light
:
Int
class
dimen
Module Contents
static
val
abc_action_bar_content_inset_material
:
Int
static
val
abc_action_bar_content_inset_with_nav
:
Int
static
val
abc_action_bar_default_height_material
:
Int
static
val
abc_action_bar_default_padding_end_material
:
Int
static
val
abc_action_bar_default_padding_start_material
:
Int
static
val
abc_action_bar_elevation_material
:
Int
static
val
abc_action_bar_icon_vertical_padding_material
:
Int
static
val
abc_action_bar_overflow_padding_end_material
:
Int
static
val
abc_action_bar_overflow_padding_start_material
:
Int
static
val
abc_action_bar_stacked_max_height
:
Int
static
val
abc_action_bar_stacked_tab_max_width
:
Int
static
val
abc_action_bar_subtitle_bottom_margin_material
:
Int
static
val
abc_action_bar_subtitle_top_margin_material
:
Int
static
val
abc_action_button_min_height_material
:
Int
static
val
abc_action_button_min_width_material
:
Int
static
val
abc_action_button_min_width_overflow_material
:
Int
static
val
abc_alert_dialog_button_bar_height
:
Int
static
val
abc_alert_dialog_button_dimen
:
Int
static
val
abc_button_inset_horizontal_material
:
Int
static
val
abc_button_inset_vertical_material
:
Int
static
val
abc_button_padding_horizontal_material
:
Int
static
val
abc_button_padding_vertical_material
:
Int
static
val
abc_cascading_menus_min_smallest_width
:
Int
static
val
abc_config_prefDialogWidth
:
Int
static
val
abc_control_corner_material
:
Int
static
val
abc_control_inset_material
:
Int
static
val
abc_control_padding_material
:
Int
static
val
abc_dialog_corner_radius_material
:
Int
static
val
abc_dialog_fixed_height_major
:
Int
static
val
abc_dialog_fixed_height_minor
:
Int
static
val
abc_dialog_fixed_width_major
:
Int
static
val
abc_dialog_fixed_width_minor
:
Int
static
val
abc_dialog_list_padding_bottom_no_buttons
:
Int
static
val
abc_dialog_list_padding_top_no_title
:
Int
static
val
abc_dialog_min_width_major
:
Int
static
val
abc_dialog_min_width_minor
:
Int
static
val
abc_dialog_padding_material
:
Int
static
val
abc_dialog_padding_top_material
:
Int
static
val
abc_dialog_title_divider_material
:
Int
static
val
abc_disabled_alpha_material_dark
:
Int
static
val
abc_disabled_alpha_material_light
:
Int
static
val
abc_dropdownitem_icon_width
:
Int
static
val
abc_dropdownitem_text_padding_left
:
Int
static
val
abc_dropdownitem_text_padding_right
:
Int
static
val
abc_edit_text_inset_bottom_material
:
Int
static
val
abc_edit_text_inset_horizontal_material
:
Int
static
val
abc_edit_text_inset_top_material
:
Int
static
val
abc_floating_window_z
:
Int
static
val
abc_list_item_padding_horizontal_material
:
Int
static
val
abc_panel_menu_list_width
:
Int
static
val
abc_progress_bar_height_material
:
Int
static
val
abc_search_view_preferred_height
:
Int
static
val
abc_search_view_preferred_width
:
Int
static
val
abc_seekbar_track_background_height_material
:
Int
static
val
abc_seekbar_track_progress_height_material
:
Int
static
val
abc_select_dialog_padding_start_material
:
Int
static
val
abc_switch_padding
:
Int
static
val
abc_text_size_body_1_material
:
Int
static
val
abc_text_size_body_2_material
:
Int
static
val
abc_text_size_button_material
:
Int
static
val
abc_text_size_caption_material
:
Int
static
val
abc_text_size_display_1_material
:
Int
static
val
abc_text_size_display_2_material
:
Int
static
val
abc_text_size_display_3_material
:
Int
static
val
abc_text_size_display_4_material
:
Int
static
val
abc_text_size_headline_material
:
Int
static
val
abc_text_size_large_material
:
Int
static
val
abc_text_size_medium_material
:
Int
static
val
abc_text_size_menu_header_material
:
Int
static
val
abc_text_size_menu_material
:
Int
static
val
abc_text_size_small_material
:
Int
static
val
abc_text_size_subhead_material
:
Int
static
val
abc_text_size_subtitle_material_toolbar
:
Int
static
val
abc_text_size_title_material
:
Int
static
val
abc_text_size_title_material_toolbar
:
Int
static
val
cardview_compat_inset_shadow
:
Int
static
val
cardview_default_elevation
:
Int
static
val
cardview_default_radius
:
Int
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
design_appbar_elevation
:
Int
static
val
design_bottom_navigation_active_item_max_width
:
Int
static
val
design_bottom_navigation_active_item_min_width
:
Int
static
val
design_bottom_navigation_active_text_size
:
Int
static
val
design_bottom_navigation_elevation
:
Int
static
val
design_bottom_navigation_height
:
Int
static
val
design_bottom_navigation_icon_size
:
Int
static
val
design_bottom_navigation_item_max_width
:
Int
static
val
design_bottom_navigation_item_min_width
:
Int
static
val
design_bottom_navigation_margin
:
Int
static
val
design_bottom_navigation_shadow_height
:
Int
static
val
design_bottom_navigation_text_size
:
Int
static
val
design_bottom_sheet_modal_elevation
:
Int
static
val
design_bottom_sheet_peek_height_min
:
Int
static
val
design_fab_border_width
:
Int
static
val
design_fab_elevation
:
Int
static
val
design_fab_image_size
:
Int
static
val
design_fab_size_mini
:
Int
static
val
design_fab_size_normal
:
Int
static
val
design_fab_translation_z_hovered_focused
:
Int
static
val
design_fab_translation_z_pressed
:
Int
static
val
design_navigation_elevation
:
Int
static
val
design_navigation_icon_padding
:
Int
static
val
design_navigation_icon_size
:
Int
static
val
design_navigation_item_horizontal_padding
:
Int
static
val
design_navigation_item_icon_padding
:
Int
static
val
design_navigation_max_width
:
Int
static
val
design_navigation_padding_bottom
:
Int
static
val
design_navigation_separator_vertical_padding
:
Int
static
val
design_snackbar_action_inline_max_width
:
Int
static
val
design_snackbar_background_corner_radius
:
Int
static
val
design_snackbar_elevation
:
Int
static
val
design_snackbar_extra_spacing_horizontal
:
Int
static
val
design_snackbar_max_width
:
Int
static
val
design_snackbar_min_width
:
Int
static
val
design_snackbar_padding_horizontal
:
Int
static
val
design_snackbar_padding_vertical
:
Int
static
val
design_snackbar_padding_vertical_2lines
:
Int
static
val
design_snackbar_text_size
:
Int
static
val
design_tab_max_width
:
Int
static
val
design_tab_scrollable_min_width
:
Int
static
val
design_tab_text_size
:
Int
static
val
design_tab_text_size_2line
:
Int
static
val
design_textinput_caption_translate_y
:
Int
static
val
disabled_alpha_material_dark
:
Int
static
val
disabled_alpha_material_light
:
Int
static
val
fastscroll_default_thickness
:
Int
static
val
fastscroll_margin
:
Int
static
val
fastscroll_minimum_range
:
Int
static
val
highlight_alpha_material_colored
:
Int
static
val
highlight_alpha_material_dark
:
Int
static
val
highlight_alpha_material_light
:
Int
static
val
hint_alpha_material_dark
:
Int
static
val
hint_alpha_material_light
:
Int
static
val
hint_pressed_alpha_material_dark
:
Int
static
val
hint_pressed_alpha_material_light
:
Int
static
val
item_touch_helper_max_drag_scroll_per_frame
:
Int
static
val
item_touch_helper_swipe_escape_max_velocity
:
Int
static
val
item_touch_helper_swipe_escape_velocity
:
Int
static
val
mtrl_bottomappbar_fabOffsetEndMode
:
Int
static
val
mtrl_bottomappbar_fab_cradle_margin
:
Int
static
val
mtrl_bottomappbar_fab_cradle_rounded_corner_radius
:
Int
static
val
mtrl_bottomappbar_fab_cradle_vertical_offset
:
Int
static
val
mtrl_bottomappbar_height
:
Int
static
val
mtrl_btn_corner_radius
:
Int
static
val
mtrl_btn_dialog_btn_min_width
:
Int
static
val
mtrl_btn_disabled_elevation
:
Int
static
val
mtrl_btn_disabled_z
:
Int
static
val
mtrl_btn_elevation
:
Int
static
val
mtrl_btn_focused_z
:
Int
static
val
mtrl_btn_hovered_z
:
Int
static
val
mtrl_btn_icon_btn_padding_left
:
Int
static
val
mtrl_btn_icon_padding
:
Int
static
val
mtrl_btn_inset
:
Int
static
val
mtrl_btn_letter_spacing
:
Int
static
val
mtrl_btn_padding_bottom
:
Int
static
val
mtrl_btn_padding_left
:
Int
static
val
mtrl_btn_padding_right
:
Int
static
val
mtrl_btn_padding_top
:
Int
static
val
mtrl_btn_pressed_z
:
Int
static
val
mtrl_btn_stroke_size
:
Int
static
val
mtrl_btn_text_btn_icon_padding
:
Int
static
val
mtrl_btn_text_btn_padding_left
:
Int
static
val
mtrl_btn_text_btn_padding_right
:
Int
static
val
mtrl_btn_text_size
:
Int
static
val
mtrl_btn_z
:
Int
static
val
mtrl_card_elevation
:
Int
static
val
mtrl_card_spacing
:
Int
static
val
mtrl_chip_pressed_translation_z
:
Int
static
val
mtrl_chip_text_size
:
Int
static
val
mtrl_fab_elevation
:
Int
static
val
mtrl_fab_translation_z_hovered_focused
:
Int
static
val
mtrl_fab_translation_z_pressed
:
Int
static
val
mtrl_navigation_elevation
:
Int
static
val
mtrl_navigation_item_horizontal_padding
:
Int
static
val
mtrl_navigation_item_icon_padding
:
Int
static
val
mtrl_snackbar_background_corner_radius
:
Int
static
val
mtrl_snackbar_margin
:
Int
static
val
mtrl_textinput_box_bottom_offset
:
Int
static
val
mtrl_textinput_box_corner_radius_medium
:
Int
static
val
mtrl_textinput_box_corner_radius_small
:
Int
static
val
mtrl_textinput_box_label_cutout_padding
:
Int
static
val
mtrl_textinput_box_padding_end
:
Int
static
val
mtrl_textinput_box_stroke_width_default
:
Int
static
val
mtrl_textinput_box_stroke_width_focused
:
Int
static
val
mtrl_textinput_outline_box_expanded_padding
:
Int
static
val
mtrl_toolbar_default_height
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
static
val
tooltip_corner_radius
:
Int
static
val
tooltip_horizontal_padding
:
Int
static
val
tooltip_margin
:
Int
static
val
tooltip_precise_anchor_extra_offset
:
Int
static
val
tooltip_precise_anchor_threshold
:
Int
static
val
tooltip_vertical_padding
:
Int
static
val
tooltip_y_offset_non_touch
:
Int
static
val
tooltip_y_offset_touch
:
Int
class
drawable
Module Contents
static
val
abc_ab_share_pack_mtrl_alpha
:
Int
static
val
abc_action_bar_item_background_material
:
Int
static
val
abc_btn_borderless_material
:
Int
static
val
abc_btn_check_material
:
Int
static
val
abc_btn_check_to_on_mtrl_000
:
Int
static
val
abc_btn_check_to_on_mtrl_015
:
Int
static
val
abc_btn_colored_material
:
Int
static
val
abc_btn_default_mtrl_shape
:
Int
static
val
abc_btn_radio_material
:
Int
static
val
abc_btn_radio_to_on_mtrl_000
:
Int
static
val
abc_btn_radio_to_on_mtrl_015
:
Int
static
val
abc_btn_switch_to_on_mtrl_00001
:
Int
static
val
abc_btn_switch_to_on_mtrl_00012
:
Int
static
val
abc_cab_background_internal_bg
:
Int
static
val
abc_cab_background_top_material
:
Int
static
val
abc_cab_background_top_mtrl_alpha
:
Int
static
val
abc_control_background_material
:
Int
static
val
abc_dialog_material_background
:
Int
static
val
abc_edit_text_material
:
Int
static
val
abc_ic_ab_back_material
:
Int
static
val
abc_ic_arrow_drop_right_black_24dp
:
Int
static
val
abc_ic_clear_material
:
Int
static
val
abc_ic_commit_search_api_mtrl_alpha
:
Int
static
val
abc_ic_go_search_api_material
:
Int
static
val
abc_ic_menu_copy_mtrl_am_alpha
:
Int
static
val
abc_ic_menu_cut_mtrl_alpha
:
Int
static
val
abc_ic_menu_overflow_material
:
Int
static
val
abc_ic_menu_paste_mtrl_am_alpha
:
Int
static
val
abc_ic_menu_selectall_mtrl_alpha
:
Int
static
val
abc_ic_menu_share_mtrl_alpha
:
Int
static
val
abc_ic_search_api_material
:
Int
static
val
abc_ic_star_black_16dp
:
Int
static
val
abc_ic_star_black_36dp
:
Int
static
val
abc_ic_star_black_48dp
:
Int
static
val
abc_ic_star_half_black_16dp
:
Int
static
val
abc_ic_star_half_black_36dp
:
Int
static
val
abc_ic_star_half_black_48dp
:
Int
static
val
abc_ic_voice_search_api_material
:
Int
static
val
abc_item_background_holo_dark
:
Int
static
val
abc_item_background_holo_light
:
Int
static
val
abc_list_divider_material
:
Int
static
val
abc_list_divider_mtrl_alpha
:
Int
static
val
abc_list_focused_holo
:
Int
static
val
abc_list_longpressed_holo
:
Int
static
val
abc_list_pressed_holo_dark
:
Int
static
val
abc_list_pressed_holo_light
:
Int
static
val
abc_list_selector_background_transition_holo_dark
:
Int
static
val
abc_list_selector_background_transition_holo_light
:
Int
static
val
abc_list_selector_disabled_holo_dark
:
Int
static
val
abc_list_selector_disabled_holo_light
:
Int
static
val
abc_list_selector_holo_dark
:
Int
static
val
abc_list_selector_holo_light
:
Int
static
val
abc_menu_hardkey_panel_mtrl_mult
:
Int
static
val
abc_popup_background_mtrl_mult
:
Int
static
val
abc_ratingbar_indicator_material
:
Int
static
val
abc_ratingbar_material
:
Int
static
val
abc_ratingbar_small_material
:
Int
static
val
abc_scrubber_control_off_mtrl_alpha
:
Int
static
val
abc_scrubber_control_to_pressed_mtrl_000
:
Int
static
val
abc_scrubber_control_to_pressed_mtrl_005
:
Int
static
val
abc_scrubber_primary_mtrl_alpha
:
Int
static
val
abc_scrubber_track_mtrl_alpha
:
Int
static
val
abc_seekbar_thumb_material
:
Int
static
val
abc_seekbar_tick_mark_material
:
Int
static
val
abc_seekbar_track_material
:
Int
static
val
abc_spinner_mtrl_am_alpha
:
Int
static
val
abc_spinner_textfield_background_material
:
Int
static
val
abc_switch_thumb_material
:
Int
static
val
abc_switch_track_mtrl_alpha
:
Int
static
val
abc_tab_indicator_material
:
Int
static
val
abc_tab_indicator_mtrl_alpha
:
Int
static
val
abc_text_cursor_material
:
Int
static
val
abc_text_select_handle_left_mtrl_dark
:
Int
static
val
abc_text_select_handle_left_mtrl_light
:
Int
static
val
abc_text_select_handle_middle_mtrl_dark
:
Int
static
val
abc_text_select_handle_middle_mtrl_light
:
Int
static
val
abc_text_select_handle_right_mtrl_dark
:
Int
static
val
abc_text_select_handle_right_mtrl_light
:
Int
static
val
abc_textfield_activated_mtrl_alpha
:
Int
static
val
abc_textfield_default_mtrl_alpha
:
Int
static
val
abc_textfield_search_activated_mtrl_alpha
:
Int
static
val
abc_textfield_search_default_mtrl_alpha
:
Int
static
val
abc_textfield_search_material
:
Int
static
val
abc_vector_test
:
Int
static
val
avd_hide_password
:
Int
static
val
avd_show_password
:
Int
static
val
design_bottom_navigation_item_background
:
Int
static
val
design_fab_background
:
Int
static
val
design_ic_visibility
:
Int
static
val
design_ic_visibility_off
:
Int
static
val
design_password_eye
:
Int
static
val
design_snackbar_background
:
Int
static
val
ic_mtrl_chip_checked_black
:
Int
static
val
ic_mtrl_chip_checked_circle
:
Int
static
val
ic_mtrl_chip_close_circle
:
Int
static
val
mtrl_snackbar_background
:
Int
static
val
mtrl_tabs_default_indicator
:
Int
static
val
navigation_empty_icon
:
Int
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
static
val
tooltip_frame_dark
:
Int
static
val
tooltip_frame_light
:
Int
class
id
Module Contents
static
val
action_bar
:
Int
static
val
action_bar_activity_content
:
Int
static
val
action_bar_container
:
Int
static
val
action_bar_root
:
Int
static
val
action_bar_spinner
:
Int
static
val
action_bar_subtitle
:
Int
static
val
action_bar_title
:
Int
static
val
action_container
:
Int
static
val
action_context_bar
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_menu_divider
:
Int
static
val
action_menu_presenter
:
Int
static
val
action_mode_bar
:
Int
static
val
action_mode_bar_stub
:
Int
static
val
action_mode_close_button
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
activity_chooser_view_content
:
Int
static
val
add
:
Int
static
val
alertTitle
:
Int
static
val
async
:
Int
static
val
auto
:
Int
static
val
blocking
:
Int
static
val
bottom
:
Int
static
val
buttonPanel
:
Int
static
val
center
:
Int
static
val
checkbox
:
Int
static
val
chronometer
:
Int
static
val
container
:
Int
static
val
content
:
Int
static
val
contentPanel
:
Int
static
val
coordinator
:
Int
static
val
custom
:
Int
static
val
customPanel
:
Int
static
val
decor_content_parent
:
Int
static
val
default_activity_button
:
Int
static
val
design_bottom_sheet
:
Int
static
val
design_menu_item_action_area
:
Int
static
val
design_menu_item_action_area_stub
:
Int
static
val
design_menu_item_text
:
Int
static
val
design_navigation_view
:
Int
static
val
edit_query
:
Int
static
val
end
:
Int
static
val
expand_activities_button
:
Int
static
val
expanded_menu
:
Int
static
val
fill
:
Int
static
val
filled
:
Int
static
val
fixed
:
Int
static
val
forever
:
Int
static
val
ghost_view
:
Int
static
val
group_divider
:
Int
static
val
home
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
image
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
item_touch_helper_previous_elevation
:
Int
static
val
labeled
:
Int
static
val
largeLabel
:
Int
static
val
left
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
listMode
:
Int
static
val
list_item
:
Int
static
val
masked
:
Int
static
val
message
:
Int
static
val
mini
:
Int
static
val
mtrl_child_content_container
:
Int
static
val
mtrl_internal_children_alpha_tag
:
Int
static
val
multiply
:
Int
static
val
navigation_header_container
:
Int
static
val
none
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
outline
:
Int
static
val
parallax
:
Int
static
val
parentPanel
:
Int
static
val
parent_matrix
:
Int
static
val
pin
:
Int
static
val
progress_circular
:
Int
static
val
progress_horizontal
:
Int
static
val
radio
:
Int
static
val
right
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
save_image_matrix
:
Int
static
val
save_non_transition_alpha
:
Int
static
val
save_scale_type
:
Int
static
val
screen
:
Int
static
val
scrollIndicatorDown
:
Int
static
val
scrollIndicatorUp
:
Int
static
val
scrollView
:
Int
static
val
scrollable
:
Int
static
val
search_badge
:
Int
static
val
search_bar
:
Int
static
val
search_button
:
Int
static
val
search_close_btn
:
Int
static
val
search_edit_frame
:
Int
static
val
search_go_btn
:
Int
static
val
search_mag_icon
:
Int
static
val
search_plate
:
Int
static
val
search_src_text
:
Int
static
val
search_voice_btn
:
Int
static
val
select_dialog_listview
:
Int
static
val
selected
:
Int
static
val
shortcut
:
Int
static
val
smallLabel
:
Int
static
val
snackbar_action
:
Int
static
val
snackbar_text
:
Int
static
val
spacer
:
Int
static
val
split_action_bar
:
Int
static
val
src_atop
:
Int
static
val
src_in
:
Int
static
val
src_over
:
Int
static
val
start
:
Int
static
val
stretch
:
Int
static
val
submenuarrow
:
Int
static
val
submit_area
:
Int
static
val
tabMode
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
textSpacerNoButtons
:
Int
static
val
textSpacerNoTitle
:
Int
static
val
text_input_password_toggle
:
Int
static
val
textinput_counter
:
Int
static
val
textinput_error
:
Int
static
val
textinput_helper_text
:
Int
static
val
time
:
Int
static
val
title
:
Int
static
val
titleDividerNoCustom
:
Int
static
val
title_template
:
Int
static
val
top
:
Int
static
val
topPanel
:
Int
static
val
touch_outside
:
Int
static
val
transition_current_scene
:
Int
static
val
transition_layout_save
:
Int
static
val
transition_position
:
Int
static
val
transition_scene_layoutid_cache
:
Int
static
val
transition_transform
:
Int
static
val
uniform
:
Int
static
val
unlabeled
:
Int
static
val
up
:
Int
static
val
view_offset_helper
:
Int
static
val
visible
:
Int
static
val
wrap_content
:
Int
class
integer
Module Contents
static
val
abc_config_activityDefaultDur
:
Int
static
val
abc_config_activityShortDur
:
Int
static
val
app_bar_elevation_anim_duration
:
Int
static
val
bottom_sheet_slide_duration
:
Int
static
val
cancel_button_image_alpha
:
Int
static
val
config_tooltipAnimTime
:
Int
static
val
design_snackbar_text_max_lines
:
Int
static
val
design_tab_indicator_anim_duration_ms
:
Int
static
val
hide_password_duration
:
Int
static
val
mtrl_btn_anim_delay_ms
:
Int
static
val
mtrl_btn_anim_duration_ms
:
Int
static
val
mtrl_chip_anim_duration
:
Int
static
val
mtrl_tab_indicator_anim_duration_ms
:
Int
static
val
show_password_duration
:
Int
static
val
status_bar_notification_info_maxnum
:
Int
class
interpolator
Module Contents
static
val
mtrl_fast_out_linear_in
:
Int
static
val
mtrl_fast_out_slow_in
:
Int
static
val
mtrl_linear
:
Int
static
val
mtrl_linear_out_slow_in
:
Int
class
layout
Module Contents
static
val
abc_action_bar_title_item
:
Int
static
val
abc_action_bar_up_container
:
Int
static
val
abc_action_menu_item_layout
:
Int
static
val
abc_action_menu_layout
:
Int
static
val
abc_action_mode_bar
:
Int
static
val
abc_action_mode_close_item_material
:
Int
static
val
abc_activity_chooser_view
:
Int
static
val
abc_activity_chooser_view_list_item
:
Int
static
val
abc_alert_dialog_button_bar_material
:
Int
static
val
abc_alert_dialog_material
:
Int
static
val
abc_alert_dialog_title_material
:
Int
static
val
abc_cascading_menu_item_layout
:
Int
static
val
abc_dialog_title_material
:
Int
static
val
abc_expanded_menu_layout
:
Int
static
val
abc_list_menu_item_checkbox
:
Int
static
val
abc_list_menu_item_icon
:
Int
static
val
abc_list_menu_item_layout
:
Int
static
val
abc_list_menu_item_radio
:
Int
static
val
abc_popup_menu_header_item_layout
:
Int
static
val
abc_popup_menu_item_layout
:
Int
static
val
abc_screen_content_include
:
Int
static
val
abc_screen_simple
:
Int
static
val
abc_screen_simple_overlay_action_mode
:
Int
static
val
abc_screen_toolbar
:
Int
static
val
abc_search_dropdown_item_icons_2line
:
Int
static
val
abc_search_view
:
Int
static
val
abc_select_dialog_material
:
Int
static
val
abc_tooltip
:
Int
static
val
design_bottom_navigation_item
:
Int
static
val
design_bottom_sheet_dialog
:
Int
static
val
design_layout_snackbar
:
Int
static
val
design_layout_snackbar_include
:
Int
static
val
design_layout_tab_icon
:
Int
static
val
design_layout_tab_text
:
Int
static
val
design_menu_item_action_area
:
Int
static
val
design_navigation_item
:
Int
static
val
design_navigation_item_header
:
Int
static
val
design_navigation_item_separator
:
Int
static
val
design_navigation_item_subheader
:
Int
static
val
design_navigation_menu
:
Int
static
val
design_navigation_menu_item
:
Int
static
val
design_text_input_password_icon
:
Int
static
val
mtrl_layout_snackbar
:
Int
static
val
mtrl_layout_snackbar_include
:
Int
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
static
val
select_dialog_item_material
:
Int
static
val
select_dialog_multichoice_material
:
Int
static
val
select_dialog_singlechoice_material
:
Int
static
val
support_simple_spinner_dropdown_item
:
Int
class
string
Module Contents
static
val
abc_action_bar_home_description
:
Int
static
val
abc_action_bar_up_description
:
Int
static
val
abc_action_menu_overflow_description
:
Int
static
val
abc_action_mode_done
:
Int
static
val
abc_activity_chooser_view_see_all
:
Int
static
val
abc_activitychooserview_choose_application
:
Int
static
val
abc_capital_off
:
Int
static
val
abc_capital_on
:
Int
static
val
abc_font_family_body_1_material
:
Int
static
val
abc_font_family_body_2_material
:
Int
static
val
abc_font_family_button_material
:
Int
static
val
abc_font_family_caption_material
:
Int
static
val
abc_font_family_display_1_material
:
Int
static
val
abc_font_family_display_2_material
:
Int
static
val
abc_font_family_display_3_material
:
Int
static
val
abc_font_family_display_4_material
:
Int
static
val
abc_font_family_headline_material
:
Int
static
val
abc_font_family_menu_material
:
Int
static
val
abc_font_family_subhead_material
:
Int
static
val
abc_font_family_title_material
:
Int
static
val
abc_menu_alt_shortcut_label
:
Int
static
val
abc_menu_ctrl_shortcut_label
:
Int
static
val
abc_menu_delete_shortcut_label
:
Int
static
val
abc_menu_enter_shortcut_label
:
Int
static
val
abc_menu_function_shortcut_label
:
Int
static
val
abc_menu_meta_shortcut_label
:
Int
static
val
abc_menu_shift_shortcut_label
:
Int
static
val
abc_menu_space_shortcut_label
:
Int
static
val
abc_menu_sym_shortcut_label
:
Int
static
val
abc_prepend_shortcut_label
:
Int
static
val
abc_search_hint
:
Int
static
val
abc_searchview_description_clear
:
Int
static
val
abc_searchview_description_query
:
Int
static
val
abc_searchview_description_search
:
Int
static
val
abc_searchview_description_submit
:
Int
static
val
abc_searchview_description_voice
:
Int
static
val
abc_shareactionprovider_share_with
:
Int
static
val
abc_shareactionprovider_share_with_application
:
Int
static
val
abc_toolbar_collapse_description
:
Int
static
val
appbar_scrolling_view_behavior
:
Int
static
val
bottom_sheet_behavior
:
Int
static
val
character_counter_content_description
:
Int
static
val
character_counter_pattern
:
Int
static
val
fab_transformation_scrim_behavior
:
Int
static
val
fab_transformation_sheet_behavior
:
Int
static
val
hide_bottom_view_on_scroll_behavior
:
Int
static
val
mtrl_chip_close_icon_content_description
:
Int
static
val
password_toggle_content_description
:
Int
static
val
path_password_eye
:
Int
static
val
path_password_eye_mask_strike_through
:
Int
static
val
path_password_eye_mask_visible
:
Int
static
val
path_password_strike_through
:
Int
static
val
search_menu_title
:
Int
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
AlertDialog_AppCompat
:
Int
static
val
AlertDialog_AppCompat_Light
:
Int
static
val
Animation_AppCompat_Dialog
:
Int
static
val
Animation_AppCompat_DropDownUp
:
Int
static
val
Animation_AppCompat_Tooltip
:
Int
static
val
Animation_Design_BottomSheetDialog
:
Int
static
val
Base_AlertDialog_AppCompat
:
Int
static
val
Base_AlertDialog_AppCompat_Light
:
Int
static
val
Base_Animation_AppCompat_Dialog
:
Int
static
val
Base_Animation_AppCompat_DropDownUp
:
Int
static
val
Base_Animation_AppCompat_Tooltip
:
Int
static
val
Base_CardView
:
Int
static
val
Base_DialogWindowTitleBackground_AppCompat
:
Int
static
val
Base_DialogWindowTitle_AppCompat
:
Int
static
val
Base_TextAppearance_AppCompat
:
Int
static
val
Base_TextAppearance_AppCompat_Body1
:
Int
static
val
Base_TextAppearance_AppCompat_Body2
:
Int
static
val
Base_TextAppearance_AppCompat_Button
:
Int
static
val
Base_TextAppearance_AppCompat_Caption
:
Int
static
val
Base_TextAppearance_AppCompat_Display1
:
Int
static
val
Base_TextAppearance_AppCompat_Display2
:
Int
static
val
Base_TextAppearance_AppCompat_Display3
:
Int
static
val
Base_TextAppearance_AppCompat_Display4
:
Int
static
val
Base_TextAppearance_AppCompat_Headline
:
Int
static
val
Base_TextAppearance_AppCompat_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Large
:
Int
static
val
Base_TextAppearance_AppCompat_Large_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
:
Int
static
val
Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
:
Int
static
val
Base_TextAppearance_AppCompat_Medium
:
Int
static
val
Base_TextAppearance_AppCompat_Medium_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Menu
:
Int
static
val
Base_TextAppearance_AppCompat_SearchResult
:
Int
static
val
Base_TextAppearance_AppCompat_SearchResult_Subtitle
:
Int
static
val
Base_TextAppearance_AppCompat_SearchResult_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Small
:
Int
static
val
Base_TextAppearance_AppCompat_Small_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Subhead
:
Int
static
val
Base_TextAppearance_AppCompat_Subhead_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Title_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Tooltip
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Menu
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionMode_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button_Colored
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_DropDownItem
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_PopupMenu_Header
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_PopupMenu_Large
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_PopupMenu_Small
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Switch
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem
:
Int
static
val
Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item
:
Int
static
val
Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle
:
Int
static
val
Base_TextAppearance_Widget_AppCompat_Toolbar_Title
:
Int
static
val
Base_ThemeOverlay_AppCompat
:
Int
static
val
Base_ThemeOverlay_AppCompat_ActionBar
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dark
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dark_ActionBar
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dialog
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dialog_Alert
:
Int
static
val
Base_ThemeOverlay_AppCompat_Light
:
Int
static
val
Base_ThemeOverlay_MaterialComponents_Dialog
:
Int
static
val
Base_ThemeOverlay_MaterialComponents_Dialog_Alert
:
Int
static
val
Base_Theme_AppCompat
:
Int
static
val
Base_Theme_AppCompat_CompactMenu
:
Int
static
val
Base_Theme_AppCompat_Dialog
:
Int
static
val
Base_Theme_AppCompat_DialogWhenLarge
:
Int
static
val
Base_Theme_AppCompat_Dialog_Alert
:
Int
static
val
Base_Theme_AppCompat_Dialog_FixedSize
:
Int
static
val
Base_Theme_AppCompat_Dialog_MinWidth
:
Int
static
val
Base_Theme_AppCompat_Light
:
Int
static
val
Base_Theme_AppCompat_Light_DarkActionBar
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog
:
Int
static
val
Base_Theme_AppCompat_Light_DialogWhenLarge
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog_Alert
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog_FixedSize
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog_MinWidth
:
Int
static
val
Base_Theme_MaterialComponents
:
Int
static
val
Base_Theme_MaterialComponents_Bridge
:
Int
static
val
Base_Theme_MaterialComponents_CompactMenu
:
Int
static
val
Base_Theme_MaterialComponents_Dialog
:
Int
static
val
Base_Theme_MaterialComponents_DialogWhenLarge
:
Int
static
val
Base_Theme_MaterialComponents_Dialog_Alert
:
Int
static
val
Base_Theme_MaterialComponents_Dialog_FixedSize
:
Int
static
val
Base_Theme_MaterialComponents_Dialog_MinWidth
:
Int
static
val
Base_Theme_MaterialComponents_Light
:
Int
static
val
Base_Theme_MaterialComponents_Light_Bridge
:
Int
static
val
Base_Theme_MaterialComponents_Light_DarkActionBar
:
Int
static
val
Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge
:
Int
static
val
Base_Theme_MaterialComponents_Light_Dialog
:
Int
static
val
Base_Theme_MaterialComponents_Light_DialogWhenLarge
:
Int
static
val
Base_Theme_MaterialComponents_Light_Dialog_Alert
:
Int
static
val
Base_Theme_MaterialComponents_Light_Dialog_FixedSize
:
Int
static
val
Base_Theme_MaterialComponents_Light_Dialog_MinWidth
:
Int
static
val
Base_V14_ThemeOverlay_MaterialComponents_Dialog
:
Int
static
val
Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert
:
Int
static
val
Base_V14_Theme_MaterialComponents
:
Int
static
val
Base_V14_Theme_MaterialComponents_Bridge
:
Int
static
val
Base_V14_Theme_MaterialComponents_Dialog
:
Int
static
val
Base_V14_Theme_MaterialComponents_Light
:
Int
static
val
Base_V14_Theme_MaterialComponents_Light_Bridge
:
Int
static
val
Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge
:
Int
static
val
Base_V14_Theme_MaterialComponents_Light_Dialog
:
Int
static
val
Base_V21_ThemeOverlay_AppCompat_Dialog
:
Int
static
val
Base_V21_Theme_AppCompat
:
Int
static
val
Base_V21_Theme_AppCompat_Dialog
:
Int
static
val
Base_V21_Theme_AppCompat_Light
:
Int
static
val
Base_V21_Theme_AppCompat_Light_Dialog
:
Int
static
val
Base_V22_Theme_AppCompat
:
Int
static
val
Base_V22_Theme_AppCompat_Light
:
Int
static
val
Base_V23_Theme_AppCompat
:
Int
static
val
Base_V23_Theme_AppCompat_Light
:
Int
static
val
Base_V26_Theme_AppCompat
:
Int
static
val
Base_V26_Theme_AppCompat_Light
:
Int
static
val
Base_V26_Widget_AppCompat_Toolbar
:
Int
static
val
Base_V28_Theme_AppCompat
:
Int
static
val
Base_V28_Theme_AppCompat_Light
:
Int
static
val
Base_V7_ThemeOverlay_AppCompat_Dialog
:
Int
static
val
Base_V7_Theme_AppCompat
:
Int
static
val
Base_V7_Theme_AppCompat_Dialog
:
Int
static
val
Base_V7_Theme_AppCompat_Light
:
Int
static
val
Base_V7_Theme_AppCompat_Light_Dialog
:
Int
static
val
Base_V7_Widget_AppCompat_AutoCompleteTextView
:
Int
static
val
Base_V7_Widget_AppCompat_EditText
:
Int
static
val
Base_V7_Widget_AppCompat_Toolbar
:
Int
static
val
Base_Widget_AppCompat_ActionBar
:
Int
static
val
Base_Widget_AppCompat_ActionBar_Solid
:
Int
static
val
Base_Widget_AppCompat_ActionBar_TabBar
:
Int
static
val
Base_Widget_AppCompat_ActionBar_TabText
:
Int
static
val
Base_Widget_AppCompat_ActionBar_TabView
:
Int
static
val
Base_Widget_AppCompat_ActionButton
:
Int
static
val
Base_Widget_AppCompat_ActionButton_CloseMode
:
Int
static
val
Base_Widget_AppCompat_ActionButton_Overflow
:
Int
static
val
Base_Widget_AppCompat_ActionMode
:
Int
static
val
Base_Widget_AppCompat_ActivityChooserView
:
Int
static
val
Base_Widget_AppCompat_AutoCompleteTextView
:
Int
static
val
Base_Widget_AppCompat_Button
:
Int
static
val
Base_Widget_AppCompat_ButtonBar
:
Int
static
val
Base_Widget_AppCompat_ButtonBar_AlertDialog
:
Int
static
val
Base_Widget_AppCompat_Button_Borderless
:
Int
static
val
Base_Widget_AppCompat_Button_Borderless_Colored
:
Int
static
val
Base_Widget_AppCompat_Button_ButtonBar_AlertDialog
:
Int
static
val
Base_Widget_AppCompat_Button_Colored
:
Int
static
val
Base_Widget_AppCompat_Button_Small
:
Int
static
val
Base_Widget_AppCompat_CompoundButton_CheckBox
:
Int
static
val
Base_Widget_AppCompat_CompoundButton_RadioButton
:
Int
static
val
Base_Widget_AppCompat_CompoundButton_Switch
:
Int
static
val
Base_Widget_AppCompat_DrawerArrowToggle
:
Int
static
val
Base_Widget_AppCompat_DrawerArrowToggle_Common
:
Int
static
val
Base_Widget_AppCompat_DropDownItem_Spinner
:
Int
static
val
Base_Widget_AppCompat_EditText
:
Int
static
val
Base_Widget_AppCompat_ImageButton
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_Solid
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabBar
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabText
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabView
:
Int
static
val
Base_Widget_AppCompat_Light_PopupMenu
:
Int
static
val
Base_Widget_AppCompat_Light_PopupMenu_Overflow
:
Int
static
val
Base_Widget_AppCompat_ListMenuView
:
Int
static
val
Base_Widget_AppCompat_ListPopupWindow
:
Int
static
val
Base_Widget_AppCompat_ListView
:
Int
static
val
Base_Widget_AppCompat_ListView_DropDown
:
Int
static
val
Base_Widget_AppCompat_ListView_Menu
:
Int
static
val
Base_Widget_AppCompat_PopupMenu
:
Int
static
val
Base_Widget_AppCompat_PopupMenu_Overflow
:
Int
static
val
Base_Widget_AppCompat_PopupWindow
:
Int
static
val
Base_Widget_AppCompat_ProgressBar
:
Int
static
val
Base_Widget_AppCompat_ProgressBar_Horizontal
:
Int
static
val
Base_Widget_AppCompat_RatingBar
:
Int
static
val
Base_Widget_AppCompat_RatingBar_Indicator
:
Int
static
val
Base_Widget_AppCompat_RatingBar_Small
:
Int
static
val
Base_Widget_AppCompat_SearchView
:
Int
static
val
Base_Widget_AppCompat_SearchView_ActionBar
:
Int
static
val
Base_Widget_AppCompat_SeekBar
:
Int
static
val
Base_Widget_AppCompat_SeekBar_Discrete
:
Int
static
val
Base_Widget_AppCompat_Spinner
:
Int
static
val
Base_Widget_AppCompat_Spinner_Underlined
:
Int
static
val
Base_Widget_AppCompat_TextView_SpinnerItem
:
Int
static
val
Base_Widget_AppCompat_Toolbar
:
Int
static
val
Base_Widget_AppCompat_Toolbar_Button_Navigation
:
Int
static
val
Base_Widget_Design_TabLayout
:
Int
static
val
Base_Widget_MaterialComponents_Chip
:
Int
static
val
Base_Widget_MaterialComponents_TextInputEditText
:
Int
static
val
Base_Widget_MaterialComponents_TextInputLayout
:
Int
static
val
CardView
:
Int
static
val
CardView_Dark
:
Int
static
val
CardView_Light
:
Int
static
val
Platform_AppCompat
:
Int
static
val
Platform_AppCompat_Light
:
Int
static
val
Platform_MaterialComponents
:
Int
static
val
Platform_MaterialComponents_Dialog
:
Int
static
val
Platform_MaterialComponents_Light
:
Int
static
val
Platform_MaterialComponents_Light_Dialog
:
Int
static
val
Platform_ThemeOverlay_AppCompat
:
Int
static
val
Platform_ThemeOverlay_AppCompat_Dark
:
Int
static
val
Platform_ThemeOverlay_AppCompat_Light
:
Int
static
val
Platform_V21_AppCompat
:
Int
static
val
Platform_V21_AppCompat_Light
:
Int
static
val
Platform_V25_AppCompat
:
Int
static
val
Platform_V25_AppCompat_Light
:
Int
static
val
Platform_Widget_AppCompat_Spinner
:
Int
static
val
RtlOverlay_DialogWindowTitle_AppCompat
:
Int
static
val
RtlOverlay_Widget_AppCompat_ActionBar_TitleItem
:
Int
static
val
RtlOverlay_Widget_AppCompat_DialogTitle_Icon
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_Text
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_Title
:
Int
static
val
RtlOverlay_Widget_AppCompat_SearchView_MagIcon
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Query
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Text
:
Int
static
val
RtlUnderlay_Widget_AppCompat_ActionButton
:
Int
static
val
RtlUnderlay_Widget_AppCompat_ActionButton_Overflow
:
Int
static
val
TextAppearance_AppCompat
:
Int
static
val
TextAppearance_AppCompat_Body1
:
Int
static
val
TextAppearance_AppCompat_Body2
:
Int
static
val
TextAppearance_AppCompat_Button
:
Int
static
val
TextAppearance_AppCompat_Caption
:
Int
static
val
TextAppearance_AppCompat_Display1
:
Int
static
val
TextAppearance_AppCompat_Display2
:
Int
static
val
TextAppearance_AppCompat_Display3
:
Int
static
val
TextAppearance_AppCompat_Display4
:
Int
static
val
TextAppearance_AppCompat_Headline
:
Int
static
val
TextAppearance_AppCompat_Inverse
:
Int
static
val
TextAppearance_AppCompat_Large
:
Int
static
val
TextAppearance_AppCompat_Large_Inverse
:
Int
static
val
TextAppearance_AppCompat_Light_SearchResult_Subtitle
:
Int
static
val
TextAppearance_AppCompat_Light_SearchResult_Title
:
Int
static
val
TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
:
Int
static
val
TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
:
Int
static
val
TextAppearance_AppCompat_Medium
:
Int
static
val
TextAppearance_AppCompat_Medium_Inverse
:
Int
static
val
TextAppearance_AppCompat_Menu
:
Int
static
val
TextAppearance_AppCompat_SearchResult_Subtitle
:
Int
static
val
TextAppearance_AppCompat_SearchResult_Title
:
Int
static
val
TextAppearance_AppCompat_Small
:
Int
static
val
TextAppearance_AppCompat_Small_Inverse
:
Int
static
val
TextAppearance_AppCompat_Subhead
:
Int
static
val
TextAppearance_AppCompat_Subhead_Inverse
:
Int
static
val
TextAppearance_AppCompat_Title
:
Int
static
val
TextAppearance_AppCompat_Title_Inverse
:
Int
static
val
TextAppearance_AppCompat_Tooltip
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Menu
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Subtitle
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Title
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Subtitle
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Title
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_Button
:
Int
static
val
TextAppearance_AppCompat_Widget_Button_Borderless_Colored
:
Int
static
val
TextAppearance_AppCompat_Widget_Button_Colored
:
Int
static
val
TextAppearance_AppCompat_Widget_Button_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_DropDownItem
:
Int
static
val
TextAppearance_AppCompat_Widget_PopupMenu_Header
:
Int
static
val
TextAppearance_AppCompat_Widget_PopupMenu_Large
:
Int
static
val
TextAppearance_AppCompat_Widget_PopupMenu_Small
:
Int
static
val
TextAppearance_AppCompat_Widget_Switch
:
Int
static
val
TextAppearance_AppCompat_Widget_TextView_SpinnerItem
:
Int
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
TextAppearance_Design_CollapsingToolbar_Expanded
:
Int
static
val
TextAppearance_Design_Counter
:
Int
static
val
TextAppearance_Design_Counter_Overflow
:
Int
static
val
TextAppearance_Design_Error
:
Int
static
val
TextAppearance_Design_HelperText
:
Int
static
val
TextAppearance_Design_Hint
:
Int
static
val
TextAppearance_Design_Snackbar_Message
:
Int
static
val
TextAppearance_Design_Tab
:
Int
static
val
TextAppearance_MaterialComponents_Body1
:
Int
static
val
TextAppearance_MaterialComponents_Body2
:
Int
static
val
TextAppearance_MaterialComponents_Button
:
Int
static
val
TextAppearance_MaterialComponents_Caption
:
Int
static
val
TextAppearance_MaterialComponents_Chip
:
Int
static
val
TextAppearance_MaterialComponents_Headline1
:
Int
static
val
TextAppearance_MaterialComponents_Headline2
:
Int
static
val
TextAppearance_MaterialComponents_Headline3
:
Int
static
val
TextAppearance_MaterialComponents_Headline4
:
Int
static
val
TextAppearance_MaterialComponents_Headline5
:
Int
static
val
TextAppearance_MaterialComponents_Headline6
:
Int
static
val
TextAppearance_MaterialComponents_Overline
:
Int
static
val
TextAppearance_MaterialComponents_Subtitle1
:
Int
static
val
TextAppearance_MaterialComponents_Subtitle2
:
Int
static
val
TextAppearance_MaterialComponents_Tab
:
Int
static
val
TextAppearance_Widget_AppCompat_ExpandedMenu_Item
:
Int
static
val
TextAppearance_Widget_AppCompat_Toolbar_Subtitle
:
Int
static
val
TextAppearance_Widget_AppCompat_Toolbar_Title
:
Int
static
val
ThemeOverlay_AppCompat
:
Int
static
val
ThemeOverlay_AppCompat_ActionBar
:
Int
static
val
ThemeOverlay_AppCompat_Dark
:
Int
static
val
ThemeOverlay_AppCompat_Dark_ActionBar
:
Int
static
val
ThemeOverlay_AppCompat_Dialog
:
Int
static
val
ThemeOverlay_AppCompat_Dialog_Alert
:
Int
static
val
ThemeOverlay_AppCompat_Light
:
Int
static
val
ThemeOverlay_MaterialComponents
:
Int
static
val
ThemeOverlay_MaterialComponents_ActionBar
:
Int
static
val
ThemeOverlay_MaterialComponents_Dark
:
Int
static
val
ThemeOverlay_MaterialComponents_Dark_ActionBar
:
Int
static
val
ThemeOverlay_MaterialComponents_Dialog
:
Int
static
val
ThemeOverlay_MaterialComponents_Dialog_Alert
:
Int
static
val
ThemeOverlay_MaterialComponents_Light
:
Int
static
val
ThemeOverlay_MaterialComponents_TextInputEditText
:
Int
static
val
ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox
:
Int
static
val
ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense
:
Int
static
val
ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox
:
Int
static
val
ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense
:
Int
static
val
Theme_AppCompat
:
Int
static
val
Theme_AppCompat_CompactMenu
:
Int
static
val
Theme_AppCompat_DayNight
:
Int
static
val
Theme_AppCompat_DayNight_DarkActionBar
:
Int
static
val
Theme_AppCompat_DayNight_Dialog
:
Int
static
val
Theme_AppCompat_DayNight_DialogWhenLarge
:
Int
static
val
Theme_AppCompat_DayNight_Dialog_Alert
:
Int
static
val
Theme_AppCompat_DayNight_Dialog_MinWidth
:
Int
static
val
Theme_AppCompat_DayNight_NoActionBar
:
Int
static
val
Theme_AppCompat_Dialog
:
Int
static
val
Theme_AppCompat_DialogWhenLarge
:
Int
static
val
Theme_AppCompat_Dialog_Alert
:
Int
static
val
Theme_AppCompat_Dialog_MinWidth
:
Int
static
val
Theme_AppCompat_Light
:
Int
static
val
Theme_AppCompat_Light_DarkActionBar
:
Int
static
val
Theme_AppCompat_Light_Dialog
:
Int
static
val
Theme_AppCompat_Light_DialogWhenLarge
:
Int
static
val
Theme_AppCompat_Light_Dialog_Alert
:
Int
static
val
Theme_AppCompat_Light_Dialog_MinWidth
:
Int
static
val
Theme_AppCompat_Light_NoActionBar
:
Int
static
val
Theme_AppCompat_NoActionBar
:
Int
static
val
Theme_Design
:
Int
static
val
Theme_Design_BottomSheetDialog
:
Int
static
val
Theme_Design_Light
:
Int
static
val
Theme_Design_Light_BottomSheetDialog
:
Int
static
val
Theme_Design_Light_NoActionBar
:
Int
static
val
Theme_Design_NoActionBar
:
Int
static
val
Theme_MaterialComponents
:
Int
static
val
Theme_MaterialComponents_BottomSheetDialog
:
Int
static
val
Theme_MaterialComponents_Bridge
:
Int
static
val
Theme_MaterialComponents_CompactMenu
:
Int
static
val
Theme_MaterialComponents_Dialog
:
Int
static
val
Theme_MaterialComponents_DialogWhenLarge
:
Int
static
val
Theme_MaterialComponents_Dialog_Alert
:
Int
static
val
Theme_MaterialComponents_Dialog_MinWidth
:
Int
static
val
Theme_MaterialComponents_Light
:
Int
static
val
Theme_MaterialComponents_Light_BottomSheetDialog
:
Int
static
val
Theme_MaterialComponents_Light_Bridge
:
Int
static
val
Theme_MaterialComponents_Light_DarkActionBar
:
Int
static
val
Theme_MaterialComponents_Light_DarkActionBar_Bridge
:
Int
static
val
Theme_MaterialComponents_Light_Dialog
:
Int
static
val
Theme_MaterialComponents_Light_DialogWhenLarge
:
Int
static
val
Theme_MaterialComponents_Light_Dialog_Alert
:
Int
static
val
Theme_MaterialComponents_Light_Dialog_MinWidth
:
Int
static
val
Theme_MaterialComponents_Light_NoActionBar
:
Int
static
val
Theme_MaterialComponents_Light_NoActionBar_Bridge
:
Int
static
val
Theme_MaterialComponents_NoActionBar
:
Int
static
val
Theme_MaterialComponents_NoActionBar_Bridge
:
Int
static
val
Widget_AppCompat_ActionBar
:
Int
static
val
Widget_AppCompat_ActionBar_Solid
:
Int
static
val
Widget_AppCompat_ActionBar_TabBar
:
Int
static
val
Widget_AppCompat_ActionBar_TabText
:
Int
static
val
Widget_AppCompat_ActionBar_TabView
:
Int
static
val
Widget_AppCompat_ActionButton
:
Int
static
val
Widget_AppCompat_ActionButton_CloseMode
:
Int
static
val
Widget_AppCompat_ActionButton_Overflow
:
Int
static
val
Widget_AppCompat_ActionMode
:
Int
static
val
Widget_AppCompat_ActivityChooserView
:
Int
static
val
Widget_AppCompat_AutoCompleteTextView
:
Int
static
val
Widget_AppCompat_Button
:
Int
static
val
Widget_AppCompat_ButtonBar
:
Int
static
val
Widget_AppCompat_ButtonBar_AlertDialog
:
Int
static
val
Widget_AppCompat_Button_Borderless
:
Int
static
val
Widget_AppCompat_Button_Borderless_Colored
:
Int
static
val
Widget_AppCompat_Button_ButtonBar_AlertDialog
:
Int
static
val
Widget_AppCompat_Button_Colored
:
Int
static
val
Widget_AppCompat_Button_Small
:
Int
static
val
Widget_AppCompat_CompoundButton_CheckBox
:
Int
static
val
Widget_AppCompat_CompoundButton_RadioButton
:
Int
static
val
Widget_AppCompat_CompoundButton_Switch
:
Int
static
val
Widget_AppCompat_DrawerArrowToggle
:
Int
static
val
Widget_AppCompat_DropDownItem_Spinner
:
Int
static
val
Widget_AppCompat_EditText
:
Int
static
val
Widget_AppCompat_ImageButton
:
Int
static
val
Widget_AppCompat_Light_ActionBar
:
Int
static
val
Widget_AppCompat_Light_ActionBar_Solid
:
Int
static
val
Widget_AppCompat_Light_ActionBar_Solid_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabBar
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabBar_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabText
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabText_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabView
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabView_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionButton
:
Int
static
val
Widget_AppCompat_Light_ActionButton_CloseMode
:
Int
static
val
Widget_AppCompat_Light_ActionButton_Overflow
:
Int
static
val
Widget_AppCompat_Light_ActionMode_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActivityChooserView
:
Int
static
val
Widget_AppCompat_Light_AutoCompleteTextView
:
Int
static
val
Widget_AppCompat_Light_DropDownItem_Spinner
:
Int
static
val
Widget_AppCompat_Light_ListPopupWindow
:
Int
static
val
Widget_AppCompat_Light_ListView_DropDown
:
Int
static
val
Widget_AppCompat_Light_PopupMenu
:
Int
static
val
Widget_AppCompat_Light_PopupMenu_Overflow
:
Int
static
val
Widget_AppCompat_Light_SearchView
:
Int
static
val
Widget_AppCompat_Light_Spinner_DropDown_ActionBar
:
Int
static
val
Widget_AppCompat_ListMenuView
:
Int
static
val
Widget_AppCompat_ListPopupWindow
:
Int
static
val
Widget_AppCompat_ListView
:
Int
static
val
Widget_AppCompat_ListView_DropDown
:
Int
static
val
Widget_AppCompat_ListView_Menu
:
Int
static
val
Widget_AppCompat_PopupMenu
:
Int
static
val
Widget_AppCompat_PopupMenu_Overflow
:
Int
static
val
Widget_AppCompat_PopupWindow
:
Int
static
val
Widget_AppCompat_ProgressBar
:
Int
static
val
Widget_AppCompat_ProgressBar_Horizontal
:
Int
static
val
Widget_AppCompat_RatingBar
:
Int
static
val
Widget_AppCompat_RatingBar_Indicator
:
Int
static
val
Widget_AppCompat_RatingBar_Small
:
Int
static
val
Widget_AppCompat_SearchView
:
Int
static
val
Widget_AppCompat_SearchView_ActionBar
:
Int
static
val
Widget_AppCompat_SeekBar
:
Int
static
val
Widget_AppCompat_SeekBar_Discrete
:
Int
static
val
Widget_AppCompat_Spinner
:
Int
static
val
Widget_AppCompat_Spinner_DropDown
:
Int
static
val
Widget_AppCompat_Spinner_DropDown_ActionBar
:
Int
static
val
Widget_AppCompat_Spinner_Underlined
:
Int
static
val
Widget_AppCompat_TextView_SpinnerItem
:
Int
static
val
Widget_AppCompat_Toolbar
:
Int
static
val
Widget_AppCompat_Toolbar_Button_Navigation
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
static
val
Widget_Design_AppBarLayout
:
Int
static
val
Widget_Design_BottomNavigationView
:
Int
static
val
Widget_Design_BottomSheet_Modal
:
Int
static
val
Widget_Design_CollapsingToolbar
:
Int
static
val
Widget_Design_FloatingActionButton
:
Int
static
val
Widget_Design_NavigationView
:
Int
static
val
Widget_Design_ScrimInsetsFrameLayout
:
Int
static
val
Widget_Design_Snackbar
:
Int
static
val
Widget_Design_TabLayout
:
Int
static
val
Widget_Design_TextInputLayout
:
Int
static
val
Widget_MaterialComponents_BottomAppBar
:
Int
static
val
Widget_MaterialComponents_BottomAppBar_Colored
:
Int
static
val
Widget_MaterialComponents_BottomNavigationView
:
Int
static
val
Widget_MaterialComponents_BottomNavigationView_Colored
:
Int
static
val
Widget_MaterialComponents_BottomSheet_Modal
:
Int
static
val
Widget_MaterialComponents_Button
:
Int
static
val
Widget_MaterialComponents_Button_Icon
:
Int
static
val
Widget_MaterialComponents_Button_OutlinedButton
:
Int
static
val
Widget_MaterialComponents_Button_OutlinedButton_Icon
:
Int
static
val
Widget_MaterialComponents_Button_TextButton
:
Int
static
val
Widget_MaterialComponents_Button_TextButton_Dialog
:
Int
static
val
Widget_MaterialComponents_Button_TextButton_Dialog_Icon
:
Int
static
val
Widget_MaterialComponents_Button_TextButton_Icon
:
Int
static
val
Widget_MaterialComponents_Button_UnelevatedButton
:
Int
static
val
Widget_MaterialComponents_Button_UnelevatedButton_Icon
:
Int
static
val
Widget_MaterialComponents_CardView
:
Int
static
val
Widget_MaterialComponents_ChipGroup
:
Int
static
val
Widget_MaterialComponents_Chip_Action
:
Int
static
val
Widget_MaterialComponents_Chip_Choice
:
Int
static
val
Widget_MaterialComponents_Chip_Entry
:
Int
static
val
Widget_MaterialComponents_Chip_Filter
:
Int
static
val
Widget_MaterialComponents_FloatingActionButton
:
Int
static
val
Widget_MaterialComponents_NavigationView
:
Int
static
val
Widget_MaterialComponents_Snackbar
:
Int
static
val
Widget_MaterialComponents_Snackbar_FullWidth
:
Int
static
val
Widget_MaterialComponents_TabLayout
:
Int
static
val
Widget_MaterialComponents_TabLayout_Colored
:
Int
static
val
Widget_MaterialComponents_TextInputEditText_FilledBox
:
Int
static
val
Widget_MaterialComponents_TextInputEditText_FilledBox_Dense
:
Int
static
val
Widget_MaterialComponents_TextInputEditText_OutlinedBox
:
Int
static
val
Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense
:
Int
static
val
Widget_MaterialComponents_TextInputLayout_FilledBox
:
Int
static
val
Widget_MaterialComponents_TextInputLayout_FilledBox_Dense
:
Int
static
val
Widget_MaterialComponents_TextInputLayout_OutlinedBox
:
Int
static
val
Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense
:
Int
static
val
Widget_MaterialComponents_Toolbar
:
Int
static
val
Widget_Support_CoordinatorLayout
:
Int
class
styleable
Module Contents
static
val
ActionBar
:
IntArray
static
val
ActionBarLayout
:
IntArray
static
val
ActionBarLayout_android_layout_gravity
:
Int
static
val
ActionBar_background
:
Int
static
val
ActionBar_backgroundSplit
:
Int
static
val
ActionBar_backgroundStacked
:
Int
static
val
ActionBar_contentInsetEnd
:
Int
static
val
ActionBar_contentInsetEndWithActions
:
Int
static
val
ActionBar_contentInsetLeft
:
Int
static
val
ActionBar_contentInsetRight
:
Int
static
val
ActionBar_contentInsetStart
:
Int
static
val
ActionBar_contentInsetStartWithNavigation
:
Int
static
val
ActionBar_customNavigationLayout
:
Int
static
val
ActionBar_displayOptions
:
Int
static
val
ActionBar_divider
:
Int
static
val
ActionBar_elevation
:
Int
static
val
ActionBar_height
:
Int
static
val
ActionBar_hideOnContentScroll
:
Int
static
val
ActionBar_homeAsUpIndicator
:
Int
static
val
ActionBar_homeLayout
:
Int
static
val
ActionBar_icon
:
Int
static
val
ActionBar_indeterminateProgressStyle
:
Int
static
val
ActionBar_itemPadding
:
Int
static
val
ActionBar_logo
:
Int
static
val
ActionBar_navigationMode
:
Int
static
val
ActionBar_popupTheme
:
Int
static
val
ActionBar_progressBarPadding
:
Int
static
val
ActionBar_progressBarStyle
:
Int
static
val
ActionBar_subtitle
:
Int
static
val
ActionBar_subtitleTextStyle
:
Int
static
val
ActionBar_title
:
Int
static
val
ActionBar_titleTextStyle
:
Int
static
val
ActionMenuItemView
:
IntArray
static
val
ActionMenuItemView_android_minWidth
:
Int
static
val
ActionMode
:
IntArray
static
val
ActionMode_background
:
Int
static
val
ActionMode_backgroundSplit
:
Int
static
val
ActionMode_closeItemLayout
:
Int
static
val
ActionMode_height
:
Int
static
val
ActionMode_subtitleTextStyle
:
Int
static
val
ActionMode_titleTextStyle
:
Int
static
val
ActivityChooserView
:
IntArray
static
val
ActivityChooserView_expandActivityOverflowButtonDrawable
:
Int
static
val
ActivityChooserView_initialActivityCount
:
Int
static
val
AlertDialog
:
IntArray
static
val
AlertDialog_android_layout
:
Int
static
val
AlertDialog_buttonIconDimen
:
Int
static
val
AlertDialog_buttonPanelSideLayout
:
Int
static
val
AlertDialog_listItemLayout
:
Int
static
val
AlertDialog_listLayout
:
Int
static
val
AlertDialog_multiChoiceItemLayout
:
Int
static
val
AlertDialog_showTitle
:
Int
static
val
AlertDialog_singleChoiceItemLayout
:
Int
static
val
AppBarLayout
:
IntArray
static
val
AppBarLayoutStates
:
IntArray
static
val
AppBarLayoutStates_state_collapsed
:
Int
static
val
AppBarLayoutStates_state_collapsible
:
Int
static
val
AppBarLayoutStates_state_liftable
:
Int
static
val
AppBarLayoutStates_state_lifted
:
Int
static
val
AppBarLayout_Layout
:
IntArray
static
val
AppBarLayout_Layout_layout_scrollFlags
:
Int
static
val
AppBarLayout_Layout_layout_scrollInterpolator
:
Int
static
val
AppBarLayout_android_background
:
Int
static
val
AppBarLayout_android_keyboardNavigationCluster
:
Int
static
val
AppBarLayout_android_touchscreenBlocksFocus
:
Int
static
val
AppBarLayout_elevation
:
Int
static
val
AppBarLayout_expanded
:
Int
static
val
AppBarLayout_liftOnScroll
:
Int
static
val
AppCompatImageView
:
IntArray
static
val
AppCompatImageView_android_src
:
Int
static
val
AppCompatImageView_srcCompat
:
Int
static
val
AppCompatImageView_tint
:
Int
static
val
AppCompatImageView_tintMode
:
Int
static
val
AppCompatSeekBar
:
IntArray
static
val
AppCompatSeekBar_android_thumb
:
Int
static
val
AppCompatSeekBar_tickMark
:
Int
static
val
AppCompatSeekBar_tickMarkTint
:
Int
static
val
AppCompatSeekBar_tickMarkTintMode
:
Int
static
val
AppCompatTextHelper
:
IntArray
static
val
AppCompatTextHelper_android_drawableBottom
:
Int
static
val
AppCompatTextHelper_android_drawableEnd
:
Int
static
val
AppCompatTextHelper_android_drawableLeft
:
Int
static
val
AppCompatTextHelper_android_drawableRight
:
Int
static
val
AppCompatTextHelper_android_drawableStart
:
Int
static
val
AppCompatTextHelper_android_drawableTop
:
Int
static
val
AppCompatTextHelper_android_textAppearance
:
Int
static
val
AppCompatTextView
:
IntArray
static
val
AppCompatTextView_android_textAppearance
:
Int
static
val
AppCompatTextView_autoSizeMaxTextSize
:
Int
static
val
AppCompatTextView_autoSizeMinTextSize
:
Int
static
val
AppCompatTextView_autoSizePresetSizes
:
Int
static
val
AppCompatTextView_autoSizeStepGranularity
:
Int
static
val
AppCompatTextView_autoSizeTextType
:
Int
static
val
AppCompatTextView_firstBaselineToTopHeight
:
Int
static
val
AppCompatTextView_fontFamily
:
Int
static
val
AppCompatTextView_lastBaselineToBottomHeight
:
Int
static
val
AppCompatTextView_lineHeight
:
Int
static
val
AppCompatTextView_textAllCaps
:
Int
static
val
AppCompatTheme
:
IntArray
static
val
AppCompatTheme_actionBarDivider
:
Int
static
val
AppCompatTheme_actionBarItemBackground
:
Int
static
val
AppCompatTheme_actionBarPopupTheme
:
Int
static
val
AppCompatTheme_actionBarSize
:
Int
static
val
AppCompatTheme_actionBarSplitStyle
:
Int
static
val
AppCompatTheme_actionBarStyle
:
Int
static
val
AppCompatTheme_actionBarTabBarStyle
:
Int
static
val
AppCompatTheme_actionBarTabStyle
:
Int
static
val
AppCompatTheme_actionBarTabTextStyle
:
Int
static
val
AppCompatTheme_actionBarTheme
:
Int
static
val
AppCompatTheme_actionBarWidgetTheme
:
Int
static
val
AppCompatTheme_actionButtonStyle
:
Int
static
val
AppCompatTheme_actionDropDownStyle
:
Int
static
val
AppCompatTheme_actionMenuTextAppearance
:
Int
static
val
AppCompatTheme_actionMenuTextColor
:
Int
static
val
AppCompatTheme_actionModeBackground
:
Int
static
val
AppCompatTheme_actionModeCloseButtonStyle
:
Int
static
val
AppCompatTheme_actionModeCloseDrawable
:
Int
static
val
AppCompatTheme_actionModeCopyDrawable
:
Int
static
val
AppCompatTheme_actionModeCutDrawable
:
Int
static
val
AppCompatTheme_actionModeFindDrawable
:
Int
static
val
AppCompatTheme_actionModePasteDrawable
:
Int
static
val
AppCompatTheme_actionModePopupWindowStyle
:
Int
static
val
AppCompatTheme_actionModeSelectAllDrawable
:
Int
static
val
AppCompatTheme_actionModeShareDrawable
:
Int
static
val
AppCompatTheme_actionModeSplitBackground
:
Int
static
val
AppCompatTheme_actionModeStyle
:
Int
static
val
AppCompatTheme_actionModeWebSearchDrawable
:
Int
static
val
AppCompatTheme_actionOverflowButtonStyle
:
Int
static
val
AppCompatTheme_actionOverflowMenuStyle
:
Int
static
val
AppCompatTheme_activityChooserViewStyle
:
Int
static
val
AppCompatTheme_alertDialogButtonGroupStyle
:
Int
static
val
AppCompatTheme_alertDialogCenterButtons
:
Int
static
val
AppCompatTheme_alertDialogStyle
:
Int
static
val
AppCompatTheme_alertDialogTheme
:
Int
static
val
AppCompatTheme_android_windowAnimationStyle
:
Int
static
val
AppCompatTheme_android_windowIsFloating
:
Int
static
val
AppCompatTheme_autoCompleteTextViewStyle
:
Int
static
val
AppCompatTheme_borderlessButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarNegativeButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarNeutralButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarPositiveButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarStyle
:
Int
static
val
AppCompatTheme_buttonStyle
:
Int
static
val
AppCompatTheme_buttonStyleSmall
:
Int
static
val
AppCompatTheme_checkboxStyle
:
Int
static
val
AppCompatTheme_checkedTextViewStyle
:
Int
static
val
AppCompatTheme_colorAccent
:
Int
static
val
AppCompatTheme_colorBackgroundFloating
:
Int
static
val
AppCompatTheme_colorButtonNormal
:
Int
static
val
AppCompatTheme_colorControlActivated
:
Int
static
val
AppCompatTheme_colorControlHighlight
:
Int
static
val
AppCompatTheme_colorControlNormal
:
Int
static
val
AppCompatTheme_colorError
:
Int
static
val
AppCompatTheme_colorPrimary
:
Int
static
val
AppCompatTheme_colorPrimaryDark
:
Int
static
val
AppCompatTheme_colorSwitchThumbNormal
:
Int
static
val
AppCompatTheme_controlBackground
:
Int
static
val
AppCompatTheme_dialogCornerRadius
:
Int
static
val
AppCompatTheme_dialogPreferredPadding
:
Int
static
val
AppCompatTheme_dialogTheme
:
Int
static
val
AppCompatTheme_dividerHorizontal
:
Int
static
val
AppCompatTheme_dividerVertical
:
Int
static
val
AppCompatTheme_dropDownListViewStyle
:
Int
static
val
AppCompatTheme_dropdownListPreferredItemHeight
:
Int
static
val
AppCompatTheme_editTextBackground
:
Int
static
val
AppCompatTheme_editTextColor
:
Int
static
val
AppCompatTheme_editTextStyle
:
Int
static
val
AppCompatTheme_homeAsUpIndicator
:
Int
static
val
AppCompatTheme_imageButtonStyle
:
Int
static
val
AppCompatTheme_listChoiceBackgroundIndicator
:
Int
static
val
AppCompatTheme_listDividerAlertDialog
:
Int
static
val
AppCompatTheme_listMenuViewStyle
:
Int
static
val
AppCompatTheme_listPopupWindowStyle
:
Int
static
val
AppCompatTheme_listPreferredItemHeight
:
Int
static
val
AppCompatTheme_listPreferredItemHeightLarge
:
Int
static
val
AppCompatTheme_listPreferredItemHeightSmall
:
Int
static
val
AppCompatTheme_listPreferredItemPaddingLeft
:
Int
static
val
AppCompatTheme_listPreferredItemPaddingRight
:
Int
static
val
AppCompatTheme_panelBackground
:
Int
static
val
AppCompatTheme_panelMenuListTheme
:
Int
static
val
AppCompatTheme_panelMenuListWidth
:
Int
static
val
AppCompatTheme_popupMenuStyle
:
Int
static
val
AppCompatTheme_popupWindowStyle
:
Int
static
val
AppCompatTheme_radioButtonStyle
:
Int
static
val
AppCompatTheme_ratingBarStyle
:
Int
static
val
AppCompatTheme_ratingBarStyleIndicator
:
Int
static
val
AppCompatTheme_ratingBarStyleSmall
:
Int
static
val
AppCompatTheme_searchViewStyle
:
Int
static
val
AppCompatTheme_seekBarStyle
:
Int
static
val
AppCompatTheme_selectableItemBackground
:
Int
static
val
AppCompatTheme_selectableItemBackgroundBorderless
:
Int
static
val
AppCompatTheme_spinnerDropDownItemStyle
:
Int
static
val
AppCompatTheme_spinnerStyle
:
Int
static
val
AppCompatTheme_switchStyle
:
Int
static
val
AppCompatTheme_textAppearanceLargePopupMenu
:
Int
static
val
AppCompatTheme_textAppearanceListItem
:
Int
static
val
AppCompatTheme_textAppearanceListItemSecondary
:
Int
static
val
AppCompatTheme_textAppearanceListItemSmall
:
Int
static
val
AppCompatTheme_textAppearancePopupMenuHeader
:
Int
static
val
AppCompatTheme_textAppearanceSearchResultSubtitle
:
Int
static
val
AppCompatTheme_textAppearanceSearchResultTitle
:
Int
static
val
AppCompatTheme_textAppearanceSmallPopupMenu
:
Int
static
val
AppCompatTheme_textColorAlertDialogListItem
:
Int
static
val
AppCompatTheme_textColorSearchUrl
:
Int
static
val
AppCompatTheme_toolbarNavigationButtonStyle
:
Int
static
val
AppCompatTheme_toolbarStyle
:
Int
static
val
AppCompatTheme_tooltipForegroundColor
:
Int
static
val
AppCompatTheme_tooltipFrameBackground
:
Int
static
val
AppCompatTheme_viewInflaterClass
:
Int
static
val
AppCompatTheme_windowActionBar
:
Int
static
val
AppCompatTheme_windowActionBarOverlay
:
Int
static
val
AppCompatTheme_windowActionModeOverlay
:
Int
static
val
AppCompatTheme_windowFixedHeightMajor
:
Int
static
val
AppCompatTheme_windowFixedHeightMinor
:
Int
static
val
AppCompatTheme_windowFixedWidthMajor
:
Int
static
val
AppCompatTheme_windowFixedWidthMinor
:
Int
static
val
AppCompatTheme_windowMinWidthMajor
:
Int
static
val
AppCompatTheme_windowMinWidthMinor
:
Int
static
val
AppCompatTheme_windowNoTitle
:
Int
static
val
BottomAppBar
:
IntArray
static
val
BottomAppBar_backgroundTint
:
Int
static
val
BottomAppBar_fabAlignmentMode
:
Int
static
val
BottomAppBar_fabCradleMargin
:
Int
static
val
BottomAppBar_fabCradleRoundedCornerRadius
:
Int
static
val
BottomAppBar_fabCradleVerticalOffset
:
Int
static
val
BottomAppBar_hideOnScroll
:
Int
static
val
BottomNavigationView
:
IntArray
static
val
BottomNavigationView_elevation
:
Int
static
val
BottomNavigationView_itemBackground
:
Int
static
val
BottomNavigationView_itemHorizontalTranslationEnabled
:
Int
static
val
BottomNavigationView_itemIconSize
:
Int
static
val
BottomNavigationView_itemIconTint
:
Int
static
val
BottomNavigationView_itemTextAppearanceActive
:
Int
static
val
BottomNavigationView_itemTextAppearanceInactive
:
Int
static
val
BottomNavigationView_itemTextColor
:
Int
static
val
BottomNavigationView_labelVisibilityMode
:
Int
static
val
BottomNavigationView_menu
:
Int
static
val
BottomSheetBehavior_Layout
:
IntArray
static
val
BottomSheetBehavior_Layout_behavior_fitToContents
:
Int
static
val
BottomSheetBehavior_Layout_behavior_hideable
:
Int
static
val
BottomSheetBehavior_Layout_behavior_peekHeight
:
Int
static
val
BottomSheetBehavior_Layout_behavior_skipCollapsed
:
Int
static
val
ButtonBarLayout
:
IntArray
static
val
ButtonBarLayout_allowStacking
:
Int
static
val
CardView
:
IntArray
static
val
CardView_android_minHeight
:
Int
static
val
CardView_android_minWidth
:
Int
static
val
CardView_cardBackgroundColor
:
Int
static
val
CardView_cardCornerRadius
:
Int
static
val
CardView_cardElevation
:
Int
static
val
CardView_cardMaxElevation
:
Int
static
val
CardView_cardPreventCornerOverlap
:
Int
static
val
CardView_cardUseCompatPadding
:
Int
static
val
CardView_contentPadding
:
Int
static
val
CardView_contentPaddingBottom
:
Int
static
val
CardView_contentPaddingLeft
:
Int
static
val
CardView_contentPaddingRight
:
Int
static
val
CardView_contentPaddingTop
:
Int
static
val
Chip
:
IntArray
static
val
ChipGroup
:
IntArray
static
val
ChipGroup_checkedChip
:
Int
static
val
ChipGroup_chipSpacing
:
Int
static
val
ChipGroup_chipSpacingHorizontal
:
Int
static
val
ChipGroup_chipSpacingVertical
:
Int
static
val
ChipGroup_singleLine
:
Int
static
val
ChipGroup_singleSelection
:
Int
static
val
Chip_android_checkable
:
Int
static
val
Chip_android_ellipsize
:
Int
static
val
Chip_android_maxWidth
:
Int
static
val
Chip_android_text
:
Int
static
val
Chip_android_textAppearance
:
Int
static
val
Chip_checkedIcon
:
Int
static
val
Chip_checkedIconEnabled
:
Int
static
val
Chip_checkedIconVisible
:
Int
static
val
Chip_chipBackgroundColor
:
Int
static
val
Chip_chipCornerRadius
:
Int
static
val
Chip_chipEndPadding
:
Int
static
val
Chip_chipIcon
:
Int
static
val
Chip_chipIconEnabled
:
Int
static
val
Chip_chipIconSize
:
Int
static
val
Chip_chipIconTint
:
Int
static
val
Chip_chipIconVisible
:
Int
static
val
Chip_chipMinHeight
:
Int
static
val
Chip_chipStartPadding
:
Int
static
val
Chip_chipStrokeColor
:
Int
static
val
Chip_chipStrokeWidth
:
Int
static
val
Chip_closeIcon
:
Int
static
val
Chip_closeIconEnabled
:
Int
static
val
Chip_closeIconEndPadding
:
Int
static
val
Chip_closeIconSize
:
Int
static
val
Chip_closeIconStartPadding
:
Int
static
val
Chip_closeIconTint
:
Int
static
val
Chip_closeIconVisible
:
Int
static
val
Chip_hideMotionSpec
:
Int
static
val
Chip_iconEndPadding
:
Int
static
val
Chip_iconStartPadding
:
Int
static
val
Chip_rippleColor
:
Int
static
val
Chip_showMotionSpec
:
Int
static
val
Chip_textEndPadding
:
Int
static
val
Chip_textStartPadding
:
Int
static
val
CollapsingToolbarLayout
:
IntArray
static
val
CollapsingToolbarLayout_Layout
:
IntArray
static
val
CollapsingToolbarLayout_Layout_layout_collapseMode
:
Int
static
val
CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier
:
Int
static
val
CollapsingToolbarLayout_collapsedTitleGravity
:
Int
static
val
CollapsingToolbarLayout_collapsedTitleTextAppearance
:
Int
static
val
CollapsingToolbarLayout_contentScrim
:
Int
static
val
CollapsingToolbarLayout_expandedTitleGravity
:
Int
static
val
CollapsingToolbarLayout_expandedTitleMargin
:
Int
static
val
CollapsingToolbarLayout_expandedTitleMarginBottom
:
Int
static
val
CollapsingToolbarLayout_expandedTitleMarginEnd
:
Int
static
val
CollapsingToolbarLayout_expandedTitleMarginStart
:
Int
static
val
CollapsingToolbarLayout_expandedTitleMarginTop
:
Int
static
val
CollapsingToolbarLayout_expandedTitleTextAppearance
:
Int
static
val
CollapsingToolbarLayout_scrimAnimationDuration
:
Int
static
val
CollapsingToolbarLayout_scrimVisibleHeightTrigger
:
Int
static
val
CollapsingToolbarLayout_statusBarScrim
:
Int
static
val
CollapsingToolbarLayout_title
:
Int
static
val
CollapsingToolbarLayout_titleEnabled
:
Int
static
val
CollapsingToolbarLayout_toolbarId
:
Int
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
CompoundButton
:
IntArray
static
val
CompoundButton_android_button
:
Int
static
val
CompoundButton_buttonTint
:
Int
static
val
CompoundButton_buttonTintMode
:
Int
static
val
CoordinatorLayout
:
IntArray
static
val
CoordinatorLayout_Layout
:
IntArray
static
val
CoordinatorLayout_Layout_android_layout_gravity
:
Int
static
val
CoordinatorLayout_Layout_layout_anchor
:
Int
static
val
CoordinatorLayout_Layout_layout_anchorGravity
:
Int
static
val
CoordinatorLayout_Layout_layout_behavior
:
Int
static
val
CoordinatorLayout_Layout_layout_dodgeInsetEdges
:
Int
static
val
CoordinatorLayout_Layout_layout_insetEdge
:
Int
static
val
CoordinatorLayout_Layout_layout_keyline
:
Int
static
val
CoordinatorLayout_keylines
:
Int
static
val
CoordinatorLayout_statusBarBackground
:
Int
static
val
DesignTheme
:
IntArray
static
val
DesignTheme_bottomSheetDialogTheme
:
Int
static
val
DesignTheme_bottomSheetStyle
:
Int
static
val
DrawerArrowToggle
:
IntArray
static
val
DrawerArrowToggle_arrowHeadLength
:
Int
static
val
DrawerArrowToggle_arrowShaftLength
:
Int
static
val
DrawerArrowToggle_barLength
:
Int
static
val
DrawerArrowToggle_color
:
Int
static
val
DrawerArrowToggle_drawableSize
:
Int
static
val
DrawerArrowToggle_gapBetweenBars
:
Int
static
val
DrawerArrowToggle_spinBars
:
Int
static
val
DrawerArrowToggle_thickness
:
Int
static
val
FloatingActionButton
:
IntArray
static
val
FloatingActionButton_Behavior_Layout
:
IntArray
static
val
FloatingActionButton_Behavior_Layout_behavior_autoHide
:
Int
static
val
FloatingActionButton_backgroundTint
:
Int
static
val
FloatingActionButton_backgroundTintMode
:
Int
static
val
FloatingActionButton_borderWidth
:
Int
static
val
FloatingActionButton_elevation
:
Int
static
val
FloatingActionButton_fabCustomSize
:
Int
static
val
FloatingActionButton_fabSize
:
Int
static
val
FloatingActionButton_hideMotionSpec
:
Int
static
val
FloatingActionButton_hoveredFocusedTranslationZ
:
Int
static
val
FloatingActionButton_maxImageSize
:
Int
static
val
FloatingActionButton_pressedTranslationZ
:
Int
static
val
FloatingActionButton_rippleColor
:
Int
static
val
FloatingActionButton_showMotionSpec
:
Int
static
val
FloatingActionButton_useCompatPadding
:
Int
static
val
FlowLayout
:
IntArray
static
val
FlowLayout_itemSpacing
:
Int
static
val
FlowLayout_lineSpacing
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
ForegroundLinearLayout
:
IntArray
static
val
ForegroundLinearLayout_android_foreground
:
Int
static
val
ForegroundLinearLayout_android_foregroundGravity
:
Int
static
val
ForegroundLinearLayout_foregroundInsidePadding
:
Int
static
val
LinearLayoutCompat
:
IntArray
static
val
LinearLayoutCompat_Layout
:
IntArray
static
val
LinearLayoutCompat_Layout_android_layout_gravity
:
Int
static
val
LinearLayoutCompat_Layout_android_layout_height
:
Int
static
val
LinearLayoutCompat_Layout_android_layout_weight
:
Int
static
val
LinearLayoutCompat_Layout_android_layout_width
:
Int
static
val
LinearLayoutCompat_android_baselineAligned
:
Int
static
val
LinearLayoutCompat_android_baselineAlignedChildIndex
:
Int
static
val
LinearLayoutCompat_android_gravity
:
Int
static
val
LinearLayoutCompat_android_orientation
:
Int
static
val
LinearLayoutCompat_android_weightSum
:
Int
static
val
LinearLayoutCompat_divider
:
Int
static
val
LinearLayoutCompat_dividerPadding
:
Int
static
val
LinearLayoutCompat_measureWithLargestChild
:
Int
static
val
LinearLayoutCompat_showDividers
:
Int
static
val
ListPopupWindow
:
IntArray
static
val
ListPopupWindow_android_dropDownHorizontalOffset
:
Int
static
val
ListPopupWindow_android_dropDownVerticalOffset
:
Int
static
val
MaterialButton
:
IntArray
static
val
MaterialButton_android_insetBottom
:
Int
static
val
MaterialButton_android_insetLeft
:
Int
static
val
MaterialButton_android_insetRight
:
Int
static
val
MaterialButton_android_insetTop
:
Int
static
val
MaterialButton_backgroundTint
:
Int
static
val
MaterialButton_backgroundTintMode
:
Int
static
val
MaterialButton_cornerRadius
:
Int
static
val
MaterialButton_icon
:
Int
static
val
MaterialButton_iconGravity
:
Int
static
val
MaterialButton_iconPadding
:
Int
static
val
MaterialButton_iconSize
:
Int
static
val
MaterialButton_iconTint
:
Int
static
val
MaterialButton_iconTintMode
:
Int
static
val
MaterialButton_rippleColor
:
Int
static
val
MaterialButton_strokeColor
:
Int
static
val
MaterialButton_strokeWidth
:
Int
static
val
MaterialCardView
:
IntArray
static
val
MaterialCardView_strokeColor
:
Int
static
val
MaterialCardView_strokeWidth
:
Int
static
val
MaterialComponentsTheme
:
IntArray
static
val
MaterialComponentsTheme_bottomSheetDialogTheme
:
Int
static
val
MaterialComponentsTheme_bottomSheetStyle
:
Int
static
val
MaterialComponentsTheme_chipGroupStyle
:
Int
static
val
MaterialComponentsTheme_chipStandaloneStyle
:
Int
static
val
MaterialComponentsTheme_chipStyle
:
Int
static
val
MaterialComponentsTheme_colorAccent
:
Int
static
val
MaterialComponentsTheme_colorBackgroundFloating
:
Int
static
val
MaterialComponentsTheme_colorPrimary
:
Int
static
val
MaterialComponentsTheme_colorPrimaryDark
:
Int
static
val
MaterialComponentsTheme_colorSecondary
:
Int
static
val
MaterialComponentsTheme_editTextStyle
:
Int
static
val
MaterialComponentsTheme_floatingActionButtonStyle
:
Int
static
val
MaterialComponentsTheme_materialButtonStyle
:
Int
static
val
MaterialComponentsTheme_materialCardViewStyle
:
Int
static
val
MaterialComponentsTheme_navigationViewStyle
:
Int
static
val
MaterialComponentsTheme_scrimBackground
:
Int
static
val
MaterialComponentsTheme_snackbarButtonStyle
:
Int
static
val
MaterialComponentsTheme_tabStyle
:
Int
static
val
MaterialComponentsTheme_textAppearanceBody1
:
Int
static
val
MaterialComponentsTheme_textAppearanceBody2
:
Int
static
val
MaterialComponentsTheme_textAppearanceButton
:
Int
static
val
MaterialComponentsTheme_textAppearanceCaption
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline1
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline2
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline3
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline4
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline5
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline6
:
Int
static
val
MaterialComponentsTheme_textAppearanceOverline
:
Int
static
val
MaterialComponentsTheme_textAppearanceSubtitle1
:
Int
static
val
MaterialComponentsTheme_textAppearanceSubtitle2
:
Int
static
val
MaterialComponentsTheme_textInputStyle
:
Int
static
val
MenuGroup
:
IntArray
static
val
MenuGroup_android_checkableBehavior
:
Int
static
val
MenuGroup_android_enabled
:
Int
static
val
MenuGroup_android_id
:
Int
static
val
MenuGroup_android_menuCategory
:
Int
static
val
MenuGroup_android_orderInCategory
:
Int
static
val
MenuGroup_android_visible
:
Int
static
val
MenuItem
:
IntArray
static
val
MenuItem_actionLayout
:
Int
static
val
MenuItem_actionProviderClass
:
Int
static
val
MenuItem_actionViewClass
:
Int
static
val
MenuItem_alphabeticModifiers
:
Int
static
val
MenuItem_android_alphabeticShortcut
:
Int
static
val
MenuItem_android_checkable
:
Int
static
val
MenuItem_android_checked
:
Int
static
val
MenuItem_android_enabled
:
Int
static
val
MenuItem_android_icon
:
Int
static
val
MenuItem_android_id
:
Int
static
val
MenuItem_android_menuCategory
:
Int
static
val
MenuItem_android_numericShortcut
:
Int
static
val
MenuItem_android_onClick
:
Int
static
val
MenuItem_android_orderInCategory
:
Int
static
val
MenuItem_android_title
:
Int
static
val
MenuItem_android_titleCondensed
:
Int
static
val
MenuItem_android_visible
:
Int
static
val
MenuItem_contentDescription
:
Int
static
val
MenuItem_iconTint
:
Int
static
val
MenuItem_iconTintMode
:
Int
static
val
MenuItem_numericModifiers
:
Int
static
val
MenuItem_showAsAction
:
Int
static
val
MenuItem_tooltipText
:
Int
static
val
MenuView
:
IntArray
static
val
MenuView_android_headerBackground
:
Int
static
val
MenuView_android_horizontalDivider
:
Int
static
val
MenuView_android_itemBackground
:
Int
static
val
MenuView_android_itemIconDisabledAlpha
:
Int
static
val
MenuView_android_itemTextAppearance
:
Int
static
val
MenuView_android_verticalDivider
:
Int
static
val
MenuView_android_windowAnimationStyle
:
Int
static
val
MenuView_preserveIconSpacing
:
Int
static
val
MenuView_subMenuArrow
:
Int
static
val
NavigationView
:
IntArray
static
val
NavigationView_android_background
:
Int
static
val
NavigationView_android_fitsSystemWindows
:
Int
static
val
NavigationView_android_maxWidth
:
Int
static
val
NavigationView_elevation
:
Int
static
val
NavigationView_headerLayout
:
Int
static
val
NavigationView_itemBackground
:
Int
static
val
NavigationView_itemHorizontalPadding
:
Int
static
val
NavigationView_itemIconPadding
:
Int
static
val
NavigationView_itemIconTint
:
Int
static
val
NavigationView_itemTextAppearance
:
Int
static
val
NavigationView_itemTextColor
:
Int
static
val
NavigationView_menu
:
Int
static
val
PopupWindow
:
IntArray
static
val
PopupWindowBackgroundState
:
IntArray
static
val
PopupWindowBackgroundState_state_above_anchor
:
Int
static
val
PopupWindow_android_popupAnimationStyle
:
Int
static
val
PopupWindow_android_popupBackground
:
Int
static
val
PopupWindow_overlapAnchor
:
Int
static
val
RecycleListView
:
IntArray
static
val
RecycleListView_paddingBottomNoButtons
:
Int
static
val
RecycleListView_paddingTopNoTitle
:
Int
static
val
RecyclerView
:
IntArray
static
val
RecyclerView_android_descendantFocusability
:
Int
static
val
RecyclerView_android_orientation
:
Int
static
val
RecyclerView_fastScrollEnabled
:
Int
static
val
RecyclerView_fastScrollHorizontalThumbDrawable
:
Int
static
val
RecyclerView_fastScrollHorizontalTrackDrawable
:
Int
static
val
RecyclerView_fastScrollVerticalThumbDrawable
:
Int
static
val
RecyclerView_fastScrollVerticalTrackDrawable
:
Int
static
val
RecyclerView_layoutManager
:
Int
static
val
RecyclerView_reverseLayout
:
Int
static
val
RecyclerView_spanCount
:
Int
static
val
RecyclerView_stackFromEnd
:
Int
static
val
ScrimInsetsFrameLayout
:
IntArray
static
val
ScrimInsetsFrameLayout_insetForeground
:
Int
static
val
ScrollingViewBehavior_Layout
:
IntArray
static
val
ScrollingViewBehavior_Layout_behavior_overlapTop
:
Int
static
val
SearchView
:
IntArray
static
val
SearchView_android_focusable
:
Int
static
val
SearchView_android_imeOptions
:
Int
static
val
SearchView_android_inputType
:
Int
static
val
SearchView_android_maxWidth
:
Int
static
val
SearchView_closeIcon
:
Int
static
val
SearchView_commitIcon
:
Int
static
val
SearchView_defaultQueryHint
:
Int
static
val
SearchView_goIcon
:
Int
static
val
SearchView_iconifiedByDefault
:
Int
static
val
SearchView_layout
:
Int
static
val
SearchView_queryBackground
:
Int
static
val
SearchView_queryHint
:
Int
static
val
SearchView_searchHintIcon
:
Int
static
val
SearchView_searchIcon
:
Int
static
val
SearchView_submitBackground
:
Int
static
val
SearchView_suggestionRowLayout
:
Int
static
val
SearchView_voiceIcon
:
Int
static
val
Snackbar
:
IntArray
static
val
SnackbarLayout
:
IntArray
static
val
SnackbarLayout_android_maxWidth
:
Int
static
val
SnackbarLayout_elevation
:
Int
static
val
SnackbarLayout_maxActionInlineWidth
:
Int
static
val
Snackbar_snackbarButtonStyle
:
Int
static
val
Snackbar_snackbarStyle
:
Int
static
val
Spinner
:
IntArray
static
val
Spinner_android_dropDownWidth
:
Int
static
val
Spinner_android_entries
:
Int
static
val
Spinner_android_popupBackground
:
Int
static
val
Spinner_android_prompt
:
Int
static
val
Spinner_popupTheme
:
Int
static
val
SwitchCompat
:
IntArray
static
val
SwitchCompat_android_textOff
:
Int
static
val
SwitchCompat_android_textOn
:
Int
static
val
SwitchCompat_android_thumb
:
Int
static
val
SwitchCompat_showText
:
Int
static
val
SwitchCompat_splitTrack
:
Int
static
val
SwitchCompat_switchMinWidth
:
Int
static
val
SwitchCompat_switchPadding
:
Int
static
val
SwitchCompat_switchTextAppearance
:
Int
static
val
SwitchCompat_thumbTextPadding
:
Int
static
val
SwitchCompat_thumbTint
:
Int
static
val
SwitchCompat_thumbTintMode
:
Int
static
val
SwitchCompat_track
:
Int
static
val
SwitchCompat_trackTint
:
Int
static
val
SwitchCompat_trackTintMode
:
Int
static
val
TabItem
:
IntArray
static
val
TabItem_android_icon
:
Int
static
val
TabItem_android_layout
:
Int
static
val
TabItem_android_text
:
Int
static
val
TabLayout
:
IntArray
static
val
TabLayout_tabBackground
:
Int
static
val
TabLayout_tabContentStart
:
Int
static
val
TabLayout_tabGravity
:
Int
static
val
TabLayout_tabIconTint
:
Int
static
val
TabLayout_tabIconTintMode
:
Int
static
val
TabLayout_tabIndicator
:
Int
static
val
TabLayout_tabIndicatorAnimationDuration
:
Int
static
val
TabLayout_tabIndicatorColor
:
Int
static
val
TabLayout_tabIndicatorFullWidth
:
Int
static
val
TabLayout_tabIndicatorGravity
:
Int
static
val
TabLayout_tabIndicatorHeight
:
Int
static
val
TabLayout_tabInlineLabel
:
Int
static
val
TabLayout_tabMaxWidth
:
Int
static
val
TabLayout_tabMinWidth
:
Int
static
val
TabLayout_tabMode
:
Int
static
val
TabLayout_tabPadding
:
Int
static
val
TabLayout_tabPaddingBottom
:
Int
static
val
TabLayout_tabPaddingEnd
:
Int
static
val
TabLayout_tabPaddingStart
:
Int
static
val
TabLayout_tabPaddingTop
:
Int
static
val
TabLayout_tabRippleColor
:
Int
static
val
TabLayout_tabSelectedTextColor
:
Int
static
val
TabLayout_tabTextAppearance
:
Int
static
val
TabLayout_tabTextColor
:
Int
static
val
TabLayout_tabUnboundedRipple
:
Int
static
val
TextAppearance
:
IntArray
static
val
TextAppearance_android_fontFamily
:
Int
static
val
TextAppearance_android_shadowColor
:
Int
static
val
TextAppearance_android_shadowDx
:
Int
static
val
TextAppearance_android_shadowDy
:
Int
static
val
TextAppearance_android_shadowRadius
:
Int
static
val
TextAppearance_android_textColor
:
Int
static
val
TextAppearance_android_textColorHint
:
Int
static
val
TextAppearance_android_textColorLink
:
Int
static
val
TextAppearance_android_textSize
:
Int
static
val
TextAppearance_android_textStyle
:
Int
static
val
TextAppearance_android_typeface
:
Int
static
val
TextAppearance_fontFamily
:
Int
static
val
TextAppearance_textAllCaps
:
Int
static
val
TextInputLayout
:
IntArray
static
val
TextInputLayout_android_hint
:
Int
static
val
TextInputLayout_android_textColorHint
:
Int
static
val
TextInputLayout_boxBackgroundColor
:
Int
static
val
TextInputLayout_boxBackgroundMode
:
Int
static
val
TextInputLayout_boxCollapsedPaddingTop
:
Int
static
val
TextInputLayout_boxCornerRadiusBottomEnd
:
Int
static
val
TextInputLayout_boxCornerRadiusBottomStart
:
Int
static
val
TextInputLayout_boxCornerRadiusTopEnd
:
Int
static
val
TextInputLayout_boxCornerRadiusTopStart
:
Int
static
val
TextInputLayout_boxStrokeColor
:
Int
static
val
TextInputLayout_boxStrokeWidth
:
Int
static
val
TextInputLayout_counterEnabled
:
Int
static
val
TextInputLayout_counterMaxLength
:
Int
static
val
TextInputLayout_counterOverflowTextAppearance
:
Int
static
val
TextInputLayout_counterTextAppearance
:
Int
static
val
TextInputLayout_errorEnabled
:
Int
static
val
TextInputLayout_errorTextAppearance
:
Int
static
val
TextInputLayout_helperText
:
Int
static
val
TextInputLayout_helperTextEnabled
:
Int
static
val
TextInputLayout_helperTextTextAppearance
:
Int
static
val
TextInputLayout_hintAnimationEnabled
:
Int
static
val
TextInputLayout_hintEnabled
:
Int
static
val
TextInputLayout_hintTextAppearance
:
Int
static
val
TextInputLayout_passwordToggleContentDescription
:
Int
static
val
TextInputLayout_passwordToggleDrawable
:
Int
static
val
TextInputLayout_passwordToggleEnabled
:
Int
static
val
TextInputLayout_passwordToggleTint
:
Int
static
val
TextInputLayout_passwordToggleTintMode
:
Int
static
val
ThemeEnforcement
:
IntArray
static
val
ThemeEnforcement_android_textAppearance
:
Int
static
val
ThemeEnforcement_enforceMaterialTheme
:
Int
static
val
ThemeEnforcement_enforceTextAppearance
:
Int
static
val
Toolbar
:
IntArray
static
val
Toolbar_android_gravity
:
Int
static
val
Toolbar_android_minHeight
:
Int
static
val
Toolbar_buttonGravity
:
Int
static
val
Toolbar_collapseContentDescription
:
Int
static
val
Toolbar_collapseIcon
:
Int
static
val
Toolbar_contentInsetEnd
:
Int
static
val
Toolbar_contentInsetEndWithActions
:
Int
static
val
Toolbar_contentInsetLeft
:
Int
static
val
Toolbar_contentInsetRight
:
Int
static
val
Toolbar_contentInsetStart
:
Int
static
val
Toolbar_contentInsetStartWithNavigation
:
Int
static
val
Toolbar_logo
:
Int
static
val
Toolbar_logoDescription
:
Int
static
val
Toolbar_maxButtonHeight
:
Int
static
val
Toolbar_navigationContentDescription
:
Int
static
val
Toolbar_navigationIcon
:
Int
static
val
Toolbar_popupTheme
:
Int
static
val
Toolbar_subtitle
:
Int
static
val
Toolbar_subtitleTextAppearance
:
Int
static
val
Toolbar_subtitleTextColor
:
Int
static
val
Toolbar_title
:
Int
static
val
Toolbar_titleMargin
:
Int
static
val
Toolbar_titleMarginBottom
:
Int
static
val
Toolbar_titleMarginEnd
:
Int
static
val
Toolbar_titleMarginStart
:
Int
static
val
Toolbar_titleMarginTop
:
Int
static
val
Toolbar_titleMargins
:
Int
static
val
Toolbar_titleTextAppearance
:
Int
static
val
Toolbar_titleTextColor
:
Int
static
val
View
:
IntArray
static
val
ViewBackgroundHelper
:
IntArray
static
val
ViewBackgroundHelper_android_background
:
Int
static
val
ViewBackgroundHelper_backgroundTint
:
Int
static
val
ViewBackgroundHelper_backgroundTintMode
:
Int
static
val
ViewStubCompat
:
IntArray
static
val
ViewStubCompat_android_id
:
Int
static
val
ViewStubCompat_android_inflatedId
:
Int
static
val
ViewStubCompat_android_layout
:
Int
static
val
View_android_focusable
:
Int
static
val
View_android_theme
:
Int
static
val
View_paddingEnd
:
Int
static
val
View_paddingStart
:
Int
static
val
View_theme
:
Int
class
R
Module Contents
class
anim
Module Contents
static
val
abc_fade_in
:
Int
static
val
abc_fade_out
:
Int
static
val
abc_grow_fade_in_from_bottom
:
Int
static
val
abc_popup_enter
:
Int
static
val
abc_popup_exit
:
Int
static
val
abc_shrink_fade_out_from_bottom
:
Int
static
val
abc_slide_in_bottom
:
Int
static
val
abc_slide_in_top
:
Int
static
val
abc_slide_out_bottom
:
Int
static
val
abc_slide_out_top
:
Int
static
val
abc_tooltip_enter
:
Int
static
val
abc_tooltip_exit
:
Int
static
val
design_bottom_sheet_slide_in
:
Int
static
val
design_bottom_sheet_slide_out
:
Int
static
val
design_snackbar_in
:
Int
static
val
design_snackbar_out
:
Int
class
animator
Module Contents
static
val
design_appbar_state_list_animator
:
Int
static
val
design_fab_hide_motion_spec
:
Int
static
val
design_fab_show_motion_spec
:
Int
static
val
mtrl_btn_state_list_anim
:
Int
static
val
mtrl_btn_unelevated_state_list_anim
:
Int
static
val
mtrl_chip_state_list_anim
:
Int
static
val
mtrl_fab_hide_motion_spec
:
Int
static
val
mtrl_fab_show_motion_spec
:
Int
static
val
mtrl_fab_transformation_sheet_collapse_spec
:
Int
static
val
mtrl_fab_transformation_sheet_expand_spec
:
Int
class
attr
Module Contents
static
val
actionBarDivider
:
Int
static
val
actionBarItemBackground
:
Int
static
val
actionBarPopupTheme
:
Int
static
val
actionBarSize
:
Int
static
val
actionBarSplitStyle
:
Int
static
val
actionBarStyle
:
Int
static
val
actionBarTabBarStyle
:
Int
static
val
actionBarTabStyle
:
Int
static
val
actionBarTabTextStyle
:
Int
static
val
actionBarTheme
:
Int
static
val
actionBarWidgetTheme
:
Int
static
val
actionButtonStyle
:
Int
static
val
actionDropDownStyle
:
Int
static
val
actionLayout
:
Int
static
val
actionMenuTextAppearance
:
Int
static
val
actionMenuTextColor
:
Int
static
val
actionModeBackground
:
Int
static
val
actionModeCloseButtonStyle
:
Int
static
val
actionModeCloseDrawable
:
Int
static
val
actionModeCopyDrawable
:
Int
static
val
actionModeCutDrawable
:
Int
static
val
actionModeFindDrawable
:
Int
static
val
actionModePasteDrawable
:
Int
static
val
actionModePopupWindowStyle
:
Int
static
val
actionModeSelectAllDrawable
:
Int
static
val
actionModeShareDrawable
:
Int
static
val
actionModeSplitBackground
:
Int
static
val
actionModeStyle
:
Int
static
val
actionModeWebSearchDrawable
:
Int
static
val
actionOverflowButtonStyle
:
Int
static
val
actionOverflowMenuStyle
:
Int
static
val
actionProviderClass
:
Int
static
val
actionViewClass
:
Int
static
val
activityChooserViewStyle
:
Int
static
val
alertDialogButtonGroupStyle
:
Int
static
val
alertDialogCenterButtons
:
Int
static
val
alertDialogStyle
:
Int
static
val
alertDialogTheme
:
Int
static
val
allowStacking
:
Int
static
val
alpha
:
Int
static
val
alphabeticModifiers
:
Int
static
val
arrowHeadLength
:
Int
static
val
arrowShaftLength
:
Int
static
val
autoCompleteTextViewStyle
:
Int
static
val
autoSizeMaxTextSize
:
Int
static
val
autoSizeMinTextSize
:
Int
static
val
autoSizePresetSizes
:
Int
static
val
autoSizeStepGranularity
:
Int
static
val
autoSizeTextType
:
Int
static
val
background
:
Int
static
val
backgroundSplit
:
Int
static
val
backgroundStacked
:
Int
static
val
backgroundTint
:
Int
static
val
backgroundTintMode
:
Int
static
val
barLength
:
Int
static
val
behavior_autoHide
:
Int
static
val
behavior_fitToContents
:
Int
static
val
behavior_hideable
:
Int
static
val
behavior_overlapTop
:
Int
static
val
behavior_peekHeight
:
Int
static
val
behavior_skipCollapsed
:
Int
static
val
borderWidth
:
Int
static
val
borderlessButtonStyle
:
Int
static
val
bottomAppBarStyle
:
Int
static
val
bottomNavigationStyle
:
Int
static
val
bottomSheetDialogTheme
:
Int
static
val
bottomSheetStyle
:
Int
static
val
boxBackgroundColor
:
Int
static
val
boxBackgroundMode
:
Int
static
val
boxCollapsedPaddingTop
:
Int
static
val
boxCornerRadiusBottomEnd
:
Int
static
val
boxCornerRadiusBottomStart
:
Int
static
val
boxCornerRadiusTopEnd
:
Int
static
val
boxCornerRadiusTopStart
:
Int
static
val
boxStrokeColor
:
Int
static
val
boxStrokeWidth
:
Int
static
val
buttonBarButtonStyle
:
Int
static
val
buttonBarNegativeButtonStyle
:
Int
static
val
buttonBarNeutralButtonStyle
:
Int
static
val
buttonBarPositiveButtonStyle
:
Int
static
val
buttonBarStyle
:
Int
static
val
buttonGravity
:
Int
static
val
buttonIconDimen
:
Int
static
val
buttonPanelSideLayout
:
Int
static
val
buttonStyle
:
Int
static
val
buttonStyleSmall
:
Int
static
val
buttonTint
:
Int
static
val
buttonTintMode
:
Int
static
val
cardBackgroundColor
:
Int
static
val
cardCornerRadius
:
Int
static
val
cardElevation
:
Int
static
val
cardMaxElevation
:
Int
static
val
cardPreventCornerOverlap
:
Int
static
val
cardUseCompatPadding
:
Int
static
val
cardViewStyle
:
Int
static
val
checkboxStyle
:
Int
static
val
checkedChip
:
Int
static
val
checkedIcon
:
Int
static
val
checkedIconEnabled
:
Int
static
val
checkedIconVisible
:
Int
static
val
checkedTextViewStyle
:
Int
static
val
chipBackgroundColor
:
Int
static
val
chipCornerRadius
:
Int
static
val
chipEndPadding
:
Int
static
val
chipGroupStyle
:
Int
static
val
chipIcon
:
Int
static
val
chipIconEnabled
:
Int
static
val
chipIconSize
:
Int
static
val
chipIconTint
:
Int
static
val
chipIconVisible
:
Int
static
val
chipMinHeight
:
Int
static
val
chipSpacing
:
Int
static
val
chipSpacingHorizontal
:
Int
static
val
chipSpacingVertical
:
Int
static
val
chipStandaloneStyle
:
Int
static
val
chipStartPadding
:
Int
static
val
chipStrokeColor
:
Int
static
val
chipStrokeWidth
:
Int
static
val
chipStyle
:
Int
static
val
closeIcon
:
Int
static
val
closeIconEnabled
:
Int
static
val
closeIconEndPadding
:
Int
static
val
closeIconSize
:
Int
static
val
closeIconStartPadding
:
Int
static
val
closeIconTint
:
Int
static
val
closeIconVisible
:
Int
static
val
closeItemLayout
:
Int
static
val
collapseContentDescription
:
Int
static
val
collapseIcon
:
Int
static
val
collapsedTitleGravity
:
Int
static
val
collapsedTitleTextAppearance
:
Int
static
val
color
:
Int
static
val
colorAccent
:
Int
static
val
colorBackgroundFloating
:
Int
static
val
colorButtonNormal
:
Int
static
val
colorControlActivated
:
Int
static
val
colorControlHighlight
:
Int
static
val
colorControlNormal
:
Int
static
val
colorError
:
Int
static
val
colorPrimary
:
Int
static
val
colorPrimaryDark
:
Int
static
val
colorSecondary
:
Int
static
val
colorSwitchThumbNormal
:
Int
static
val
commitIcon
:
Int
static
val
contentDescription
:
Int
static
val
contentInsetEnd
:
Int
static
val
contentInsetEndWithActions
:
Int
static
val
contentInsetLeft
:
Int
static
val
contentInsetRight
:
Int
static
val
contentInsetStart
:
Int
static
val
contentInsetStartWithNavigation
:
Int
static
val
contentPadding
:
Int
static
val
contentPaddingBottom
:
Int
static
val
contentPaddingLeft
:
Int
static
val
contentPaddingRight
:
Int
static
val
contentPaddingTop
:
Int
static
val
contentScrim
:
Int
static
val
controlBackground
:
Int
static
val
coordinatorLayoutStyle
:
Int
static
val
cornerRadius
:
Int
static
val
counterEnabled
:
Int
static
val
counterMaxLength
:
Int
static
val
counterOverflowTextAppearance
:
Int
static
val
counterTextAppearance
:
Int
static
val
customNavigationLayout
:
Int
static
val
defaultQueryHint
:
Int
static
val
dialogCornerRadius
:
Int
static
val
dialogPreferredPadding
:
Int
static
val
dialogTheme
:
Int
static
val
displayOptions
:
Int
static
val
divider
:
Int
static
val
dividerHorizontal
:
Int
static
val
dividerPadding
:
Int
static
val
dividerVertical
:
Int
static
val
drawableSize
:
Int
static
val
drawerArrowStyle
:
Int
static
val
dropDownListViewStyle
:
Int
static
val
dropdownListPreferredItemHeight
:
Int
static
val
editTextBackground
:
Int
static
val
editTextColor
:
Int
static
val
editTextStyle
:
Int
static
val
elevation
:
Int
static
val
enforceMaterialTheme
:
Int
static
val
enforceTextAppearance
:
Int
static
val
errorEnabled
:
Int
static
val
errorTextAppearance
:
Int
static
val
expandActivityOverflowButtonDrawable
:
Int
static
val
expanded
:
Int
static
val
expandedTitleGravity
:
Int
static
val
expandedTitleMargin
:
Int
static
val
expandedTitleMarginBottom
:
Int
static
val
expandedTitleMarginEnd
:
Int
static
val
expandedTitleMarginStart
:
Int
static
val
expandedTitleMarginTop
:
Int
static
val
expandedTitleTextAppearance
:
Int
static
val
fabAlignmentMode
:
Int
static
val
fabCradleMargin
:
Int
static
val
fabCradleRoundedCornerRadius
:
Int
static
val
fabCradleVerticalOffset
:
Int
static
val
fabCustomSize
:
Int
static
val
fabSize
:
Int
static
val
fastScrollEnabled
:
Int
static
val
fastScrollHorizontalThumbDrawable
:
Int
static
val
fastScrollHorizontalTrackDrawable
:
Int
static
val
fastScrollVerticalThumbDrawable
:
Int
static
val
fastScrollVerticalTrackDrawable
:
Int
static
val
firstBaselineToTopHeight
:
Int
static
val
floatingActionButtonStyle
:
Int
static
val
font
:
Int
static
val
fontFamily
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
foregroundInsidePadding
:
Int
static
val
gapBetweenBars
:
Int
static
val
goIcon
:
Int
static
val
headerLayout
:
Int
static
val
height
:
Int
static
val
helperText
:
Int
static
val
helperTextEnabled
:
Int
static
val
helperTextTextAppearance
:
Int
static
val
hideMotionSpec
:
Int
static
val
hideOnContentScroll
:
Int
static
val
hideOnScroll
:
Int
static
val
hintAnimationEnabled
:
Int
static
val
hintEnabled
:
Int
static
val
hintTextAppearance
:
Int
static
val
homeAsUpIndicator
:
Int
static
val
homeLayout
:
Int
static
val
hoveredFocusedTranslationZ
:
Int
static
val
icon
:
Int
static
val
iconEndPadding
:
Int
static
val
iconGravity
:
Int
static
val
iconPadding
:
Int
static
val
iconSize
:
Int
static
val
iconStartPadding
:
Int
static
val
iconTint
:
Int
static
val
iconTintMode
:
Int
static
val
iconifiedByDefault
:
Int
static
val
imageButtonStyle
:
Int
static
val
indeterminateProgressStyle
:
Int
static
val
initialActivityCount
:
Int
static
val
insetForeground
:
Int
static
val
isLightTheme
:
Int
static
val
itemBackground
:
Int
static
val
itemHorizontalPadding
:
Int
static
val
itemHorizontalTranslationEnabled
:
Int
static
val
itemIconPadding
:
Int
static
val
itemIconSize
:
Int
static
val
itemIconTint
:
Int
static
val
itemPadding
:
Int
static
val
itemSpacing
:
Int
static
val
itemTextAppearance
:
Int
static
val
itemTextAppearanceActive
:
Int
static
val
itemTextAppearanceInactive
:
Int
static
val
itemTextColor
:
Int
static
val
keylines
:
Int
static
val
labelVisibilityMode
:
Int
static
val
lastBaselineToBottomHeight
:
Int
static
val
layout
:
Int
static
val
layoutManager
:
Int
static
val
layout_anchor
:
Int
static
val
layout_anchorGravity
:
Int
static
val
layout_behavior
:
Int
static
val
layout_collapseMode
:
Int
static
val
layout_collapseParallaxMultiplier
:
Int
static
val
layout_dodgeInsetEdges
:
Int
static
val
layout_insetEdge
:
Int
static
val
layout_keyline
:
Int
static
val
layout_scrollFlags
:
Int
static
val
layout_scrollInterpolator
:
Int
static
val
liftOnScroll
:
Int
static
val
lineHeight
:
Int
static
val
lineSpacing
:
Int
static
val
listChoiceBackgroundIndicator
:
Int
static
val
listDividerAlertDialog
:
Int
static
val
listItemLayout
:
Int
static
val
listLayout
:
Int
static
val
listMenuViewStyle
:
Int
static
val
listPopupWindowStyle
:
Int
static
val
listPreferredItemHeight
:
Int
static
val
listPreferredItemHeightLarge
:
Int
static
val
listPreferredItemHeightSmall
:
Int
static
val
listPreferredItemPaddingLeft
:
Int
static
val
listPreferredItemPaddingRight
:
Int
static
val
logo
:
Int
static
val
logoDescription
:
Int
static
val
materialButtonStyle
:
Int
static
val
materialCardViewStyle
:
Int
static
val
maxActionInlineWidth
:
Int
static
val
maxButtonHeight
:
Int
static
val
maxImageSize
:
Int
static
val
measureWithLargestChild
:
Int
static
val
menu
:
Int
static
val
multiChoiceItemLayout
:
Int
static
val
navigationContentDescription
:
Int
static
val
navigationIcon
:
Int
static
val
navigationMode
:
Int
static
val
navigationViewStyle
:
Int
static
val
numericModifiers
:
Int
static
val
overlapAnchor
:
Int
static
val
paddingBottomNoButtons
:
Int
static
val
paddingEnd
:
Int
static
val
paddingStart
:
Int
static
val
paddingTopNoTitle
:
Int
static
val
panelBackground
:
Int
static
val
panelMenuListTheme
:
Int
static
val
panelMenuListWidth
:
Int
static
val
passwordToggleContentDescription
:
Int
static
val
passwordToggleDrawable
:
Int
static
val
passwordToggleEnabled
:
Int
static
val
passwordToggleTint
:
Int
static
val
passwordToggleTintMode
:
Int
static
val
popupMenuStyle
:
Int
static
val
popupTheme
:
Int
static
val
popupWindowStyle
:
Int
static
val
preserveIconSpacing
:
Int
static
val
pressedTranslationZ
:
Int
static
val
progressBarPadding
:
Int
static
val
progressBarStyle
:
Int
static
val
queryBackground
:
Int
static
val
queryHint
:
Int
static
val
radioButtonStyle
:
Int
static
val
ratingBarStyle
:
Int
static
val
ratingBarStyleIndicator
:
Int
static
val
ratingBarStyleSmall
:
Int
static
val
reverseLayout
:
Int
static
val
rippleColor
:
Int
static
val
scrimAnimationDuration
:
Int
static
val
scrimBackground
:
Int
static
val
scrimVisibleHeightTrigger
:
Int
static
val
searchHintIcon
:
Int
static
val
searchIcon
:
Int
static
val
searchViewStyle
:
Int
static
val
seekBarStyle
:
Int
static
val
selectableItemBackground
:
Int
static
val
selectableItemBackgroundBorderless
:
Int
static
val
showAsAction
:
Int
static
val
showDividers
:
Int
static
val
showMotionSpec
:
Int
static
val
showText
:
Int
static
val
showTitle
:
Int
static
val
singleChoiceItemLayout
:
Int
static
val
singleLine
:
Int
static
val
singleSelection
:
Int
static
val
snackbarButtonStyle
:
Int
static
val
snackbarStyle
:
Int
static
val
spanCount
:
Int
static
val
spinBars
:
Int
static
val
spinnerDropDownItemStyle
:
Int
static
val
spinnerStyle
:
Int
static
val
splitTrack
:
Int
static
val
srcCompat
:
Int
static
val
stackFromEnd
:
Int
static
val
state_above_anchor
:
Int
static
val
state_collapsed
:
Int
static
val
state_collapsible
:
Int
static
val
state_liftable
:
Int
static
val
state_lifted
:
Int
static
val
statusBarBackground
:
Int
static
val
statusBarScrim
:
Int
static
val
strokeColor
:
Int
static
val
strokeWidth
:
Int
static
val
subMenuArrow
:
Int
static
val
submitBackground
:
Int
static
val
subtitle
:
Int
static
val
subtitleTextAppearance
:
Int
static
val
subtitleTextColor
:
Int
static
val
subtitleTextStyle
:
Int
static
val
suggestionRowLayout
:
Int
static
val
switchMinWidth
:
Int
static
val
switchPadding
:
Int
static
val
switchStyle
:
Int
static
val
switchTextAppearance
:
Int
static
val
tabBackground
:
Int
static
val
tabContentStart
:
Int
static
val
tabGravity
:
Int
static
val
tabIconTint
:
Int
static
val
tabIconTintMode
:
Int
static
val
tabIndicator
:
Int
static
val
tabIndicatorAnimationDuration
:
Int
static
val
tabIndicatorColor
:
Int
static
val
tabIndicatorFullWidth
:
Int
static
val
tabIndicatorGravity
:
Int
static
val
tabIndicatorHeight
:
Int
static
val
tabInlineLabel
:
Int
static
val
tabMaxWidth
:
Int
static
val
tabMinWidth
:
Int
static
val
tabMode
:
Int
static
val
tabPadding
:
Int
static
val
tabPaddingBottom
:
Int
static
val
tabPaddingEnd
:
Int
static
val
tabPaddingStart
:
Int
static
val
tabPaddingTop
:
Int
static
val
tabRippleColor
:
Int
static
val
tabSelectedTextColor
:
Int
static
val
tabStyle
:
Int
static
val
tabTextAppearance
:
Int
static
val
tabTextColor
:
Int
static
val
tabUnboundedRipple
:
Int
static
val
textAllCaps
:
Int
static
val
textAppearanceBody1
:
Int
static
val
textAppearanceBody2
:
Int
static
val
textAppearanceButton
:
Int
static
val
textAppearanceCaption
:
Int
static
val
textAppearanceHeadline1
:
Int
static
val
textAppearanceHeadline2
:
Int
static
val
textAppearanceHeadline3
:
Int
static
val
textAppearanceHeadline4
:
Int
static
val
textAppearanceHeadline5
:
Int
static
val
textAppearanceHeadline6
:
Int
static
val
textAppearanceLargePopupMenu
:
Int
static
val
textAppearanceListItem
:
Int
static
val
textAppearanceListItemSecondary
:
Int
static
val
textAppearanceListItemSmall
:
Int
static
val
textAppearanceOverline
:
Int
static
val
textAppearancePopupMenuHeader
:
Int
static
val
textAppearanceSearchResultSubtitle
:
Int
static
val
textAppearanceSearchResultTitle
:
Int
static
val
textAppearanceSmallPopupMenu
:
Int
static
val
textAppearanceSubtitle1
:
Int
static
val
textAppearanceSubtitle2
:
Int
static
val
textColorAlertDialogListItem
:
Int
static
val
textColorSearchUrl
:
Int
static
val
textEndPadding
:
Int
static
val
textInputStyle
:
Int
static
val
textStartPadding
:
Int
static
val
theme
:
Int
static
val
thickness
:
Int
static
val
thumbTextPadding
:
Int
static
val
thumbTint
:
Int
static
val
thumbTintMode
:
Int
static
val
tickMark
:
Int
static
val
tickMarkTint
:
Int
static
val
tickMarkTintMode
:
Int
static
val
tint
:
Int
static
val
tintMode
:
Int
static
val
title
:
Int
static
val
titleEnabled
:
Int
static
val
titleMargin
:
Int
static
val
titleMarginBottom
:
Int
static
val
titleMarginEnd
:
Int
static
val
titleMarginStart
:
Int
static
val
titleMarginTop
:
Int
static
val
titleMargins
:
Int
static
val
titleTextAppearance
:
Int
static
val
titleTextColor
:
Int
static
val
titleTextStyle
:
Int
static
val
toolbarId
:
Int
static
val
toolbarNavigationButtonStyle
:
Int
static
val
toolbarStyle
:
Int
static
val
tooltipForegroundColor
:
Int
static
val
tooltipFrameBackground
:
Int
static
val
tooltipText
:
Int
static
val
track
:
Int
static
val
trackTint
:
Int
static
val
trackTintMode
:
Int
static
val
ttcIndex
:
Int
static
val
useCompatPadding
:
Int
static
val
viewInflaterClass
:
Int
static
val
voiceIcon
:
Int
static
val
windowActionBar
:
Int
static
val
windowActionBarOverlay
:
Int
static
val
windowActionModeOverlay
:
Int
static
val
windowFixedHeightMajor
:
Int
static
val
windowFixedHeightMinor
:
Int
static
val
windowFixedWidthMajor
:
Int
static
val
windowFixedWidthMinor
:
Int
static
val
windowMinWidthMajor
:
Int
static
val
windowMinWidthMinor
:
Int
static
val
windowNoTitle
:
Int
class
bool
Module Contents
static
val
abc_action_bar_embed_tabs
:
Int
static
val
abc_allow_stacked_button_bar
:
Int
static
val
abc_config_actionMenuItemAllCaps
:
Int
static
val
mtrl_btn_textappearance_all_caps
:
Int
class
color
Module Contents
static
val
abc_background_cache_hint_selector_material_dark
:
Int
static
val
abc_background_cache_hint_selector_material_light
:
Int
static
val
abc_btn_colored_borderless_text_material
:
Int
static
val
abc_btn_colored_text_material
:
Int
static
val
abc_color_highlight_material
:
Int
static
val
abc_hint_foreground_material_dark
:
Int
static
val
abc_hint_foreground_material_light
:
Int
static
val
abc_input_method_navigation_guard
:
Int
static
val
abc_primary_text_disable_only_material_dark
:
Int
static
val
abc_primary_text_disable_only_material_light
:
Int
static
val
abc_primary_text_material_dark
:
Int
static
val
abc_primary_text_material_light
:
Int
static
val
abc_search_url_text
:
Int
static
val
abc_search_url_text_normal
:
Int
static
val
abc_search_url_text_pressed
:
Int
static
val
abc_search_url_text_selected
:
Int
static
val
abc_secondary_text_material_dark
:
Int
static
val
abc_secondary_text_material_light
:
Int
static
val
abc_tint_btn_checkable
:
Int
static
val
abc_tint_default
:
Int
static
val
abc_tint_edittext
:
Int
static
val
abc_tint_seek_thumb
:
Int
static
val
abc_tint_spinner
:
Int
static
val
abc_tint_switch_track
:
Int
static
val
accent_material_dark
:
Int
static
val
accent_material_light
:
Int
static
val
background_floating_material_dark
:
Int
static
val
background_floating_material_light
:
Int
static
val
background_material_dark
:
Int
static
val
background_material_light
:
Int
static
val
bright_foreground_disabled_material_dark
:
Int
static
val
bright_foreground_disabled_material_light
:
Int
static
val
bright_foreground_inverse_material_dark
:
Int
static
val
bright_foreground_inverse_material_light
:
Int
static
val
bright_foreground_material_dark
:
Int
static
val
bright_foreground_material_light
:
Int
static
val
button_material_dark
:
Int
static
val
button_material_light
:
Int
static
val
cardview_dark_background
:
Int
static
val
cardview_light_background
:
Int
static
val
cardview_shadow_end_color
:
Int
static
val
cardview_shadow_start_color
:
Int
static
val
design_bottom_navigation_shadow_color
:
Int
static
val
design_default_color_primary
:
Int
static
val
design_default_color_primary_dark
:
Int
static
val
design_error
:
Int
static
val
design_fab_shadow_end_color
:
Int
static
val
design_fab_shadow_mid_color
:
Int
static
val
design_fab_shadow_start_color
:
Int
static
val
design_fab_stroke_end_inner_color
:
Int
static
val
design_fab_stroke_end_outer_color
:
Int
static
val
design_fab_stroke_top_inner_color
:
Int
static
val
design_fab_stroke_top_outer_color
:
Int
static
val
design_snackbar_background_color
:
Int
static
val
design_tint_password_toggle
:
Int
static
val
dim_foreground_disabled_material_dark
:
Int
static
val
dim_foreground_disabled_material_light
:
Int
static
val
dim_foreground_material_dark
:
Int
static
val
dim_foreground_material_light
:
Int
static
val
error_color_material_dark
:
Int
static
val
error_color_material_light
:
Int
static
val
foreground_material_dark
:
Int
static
val
foreground_material_light
:
Int
static
val
highlighted_text_material_dark
:
Int
static
val
highlighted_text_material_light
:
Int
static
val
material_blue_grey_800
:
Int
static
val
material_blue_grey_900
:
Int
static
val
material_blue_grey_950
:
Int
static
val
material_deep_teal_200
:
Int
static
val
material_deep_teal_500
:
Int
static
val
material_grey_100
:
Int
static
val
material_grey_300
:
Int
static
val
material_grey_50
:
Int
static
val
material_grey_600
:
Int
static
val
material_grey_800
:
Int
static
val
material_grey_850
:
Int
static
val
material_grey_900
:
Int
static
val
mtrl_bottom_nav_colored_item_tint
:
Int
static
val
mtrl_bottom_nav_item_tint
:
Int
static
val
mtrl_btn_bg_color_disabled
:
Int
static
val
mtrl_btn_bg_color_selector
:
Int
static
val
mtrl_btn_ripple_color
:
Int
static
val
mtrl_btn_stroke_color_selector
:
Int
static
val
mtrl_btn_text_btn_ripple_color
:
Int
static
val
mtrl_btn_text_color_disabled
:
Int
static
val
mtrl_btn_text_color_selector
:
Int
static
val
mtrl_btn_transparent_bg_color
:
Int
static
val
mtrl_chip_background_color
:
Int
static
val
mtrl_chip_close_icon_tint
:
Int
static
val
mtrl_chip_ripple_color
:
Int
static
val
mtrl_chip_text_color
:
Int
static
val
mtrl_fab_ripple_color
:
Int
static
val
mtrl_scrim_color
:
Int
static
val
mtrl_tabs_colored_ripple_color
:
Int
static
val
mtrl_tabs_icon_color_selector
:
Int
static
val
mtrl_tabs_icon_color_selector_colored
:
Int
static
val
mtrl_tabs_legacy_text_color_selector
:
Int
static
val
mtrl_tabs_ripple_color
:
Int
static
val
mtrl_text_btn_text_color_selector
:
Int
static
val
mtrl_textinput_default_box_stroke_color
:
Int
static
val
mtrl_textinput_disabled_color
:
Int
static
val
mtrl_textinput_filled_box_default_background_color
:
Int
static
val
mtrl_textinput_hovered_box_stroke_color
:
Int
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
primary_dark_material_dark
:
Int
static
val
primary_dark_material_light
:
Int
static
val
primary_material_dark
:
Int
static
val
primary_material_light
:
Int
static
val
primary_text_default_material_dark
:
Int
static
val
primary_text_default_material_light
:
Int
static
val
primary_text_disabled_material_dark
:
Int
static
val
primary_text_disabled_material_light
:
Int
static
val
ripple_material_dark
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_dark
:
Int
static
val
secondary_text_default_material_light
:
Int
static
val
secondary_text_disabled_material_dark
:
Int
static
val
secondary_text_disabled_material_light
:
Int
static
val
switch_thumb_disabled_material_dark
:
Int
static
val
switch_thumb_disabled_material_light
:
Int
static
val
switch_thumb_material_dark
:
Int
static
val
switch_thumb_material_light
:
Int
static
val
switch_thumb_normal_material_dark
:
Int
static
val
switch_thumb_normal_material_light
:
Int
static
val
tooltip_background_dark
:
Int
static
val
tooltip_background_light
:
Int
class
dimen
Module Contents
static
val
abc_action_bar_content_inset_material
:
Int
static
val
abc_action_bar_content_inset_with_nav
:
Int
static
val
abc_action_bar_default_height_material
:
Int
static
val
abc_action_bar_default_padding_end_material
:
Int
static
val
abc_action_bar_default_padding_start_material
:
Int
static
val
abc_action_bar_elevation_material
:
Int
static
val
abc_action_bar_icon_vertical_padding_material
:
Int
static
val
abc_action_bar_overflow_padding_end_material
:
Int
static
val
abc_action_bar_overflow_padding_start_material
:
Int
static
val
abc_action_bar_stacked_max_height
:
Int
static
val
abc_action_bar_stacked_tab_max_width
:
Int
static
val
abc_action_bar_subtitle_bottom_margin_material
:
Int
static
val
abc_action_bar_subtitle_top_margin_material
:
Int
static
val
abc_action_button_min_height_material
:
Int
static
val
abc_action_button_min_width_material
:
Int
static
val
abc_action_button_min_width_overflow_material
:
Int
static
val
abc_alert_dialog_button_bar_height
:
Int
static
val
abc_alert_dialog_button_dimen
:
Int
static
val
abc_button_inset_horizontal_material
:
Int
static
val
abc_button_inset_vertical_material
:
Int
static
val
abc_button_padding_horizontal_material
:
Int
static
val
abc_button_padding_vertical_material
:
Int
static
val
abc_cascading_menus_min_smallest_width
:
Int
static
val
abc_config_prefDialogWidth
:
Int
static
val
abc_control_corner_material
:
Int
static
val
abc_control_inset_material
:
Int
static
val
abc_control_padding_material
:
Int
static
val
abc_dialog_corner_radius_material
:
Int
static
val
abc_dialog_fixed_height_major
:
Int
static
val
abc_dialog_fixed_height_minor
:
Int
static
val
abc_dialog_fixed_width_major
:
Int
static
val
abc_dialog_fixed_width_minor
:
Int
static
val
abc_dialog_list_padding_bottom_no_buttons
:
Int
static
val
abc_dialog_list_padding_top_no_title
:
Int
static
val
abc_dialog_min_width_major
:
Int
static
val
abc_dialog_min_width_minor
:
Int
static
val
abc_dialog_padding_material
:
Int
static
val
abc_dialog_padding_top_material
:
Int
static
val
abc_dialog_title_divider_material
:
Int
static
val
abc_disabled_alpha_material_dark
:
Int
static
val
abc_disabled_alpha_material_light
:
Int
static
val
abc_dropdownitem_icon_width
:
Int
static
val
abc_dropdownitem_text_padding_left
:
Int
static
val
abc_dropdownitem_text_padding_right
:
Int
static
val
abc_edit_text_inset_bottom_material
:
Int
static
val
abc_edit_text_inset_horizontal_material
:
Int
static
val
abc_edit_text_inset_top_material
:
Int
static
val
abc_floating_window_z
:
Int
static
val
abc_list_item_padding_horizontal_material
:
Int
static
val
abc_panel_menu_list_width
:
Int
static
val
abc_progress_bar_height_material
:
Int
static
val
abc_search_view_preferred_height
:
Int
static
val
abc_search_view_preferred_width
:
Int
static
val
abc_seekbar_track_background_height_material
:
Int
static
val
abc_seekbar_track_progress_height_material
:
Int
static
val
abc_select_dialog_padding_start_material
:
Int
static
val
abc_switch_padding
:
Int
static
val
abc_text_size_body_1_material
:
Int
static
val
abc_text_size_body_2_material
:
Int
static
val
abc_text_size_button_material
:
Int
static
val
abc_text_size_caption_material
:
Int
static
val
abc_text_size_display_1_material
:
Int
static
val
abc_text_size_display_2_material
:
Int
static
val
abc_text_size_display_3_material
:
Int
static
val
abc_text_size_display_4_material
:
Int
static
val
abc_text_size_headline_material
:
Int
static
val
abc_text_size_large_material
:
Int
static
val
abc_text_size_medium_material
:
Int
static
val
abc_text_size_menu_header_material
:
Int
static
val
abc_text_size_menu_material
:
Int
static
val
abc_text_size_small_material
:
Int
static
val
abc_text_size_subhead_material
:
Int
static
val
abc_text_size_subtitle_material_toolbar
:
Int
static
val
abc_text_size_title_material
:
Int
static
val
abc_text_size_title_material_toolbar
:
Int
static
val
cardview_compat_inset_shadow
:
Int
static
val
cardview_default_elevation
:
Int
static
val
cardview_default_radius
:
Int
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
design_appbar_elevation
:
Int
static
val
design_bottom_navigation_active_item_max_width
:
Int
static
val
design_bottom_navigation_active_item_min_width
:
Int
static
val
design_bottom_navigation_active_text_size
:
Int
static
val
design_bottom_navigation_elevation
:
Int
static
val
design_bottom_navigation_height
:
Int
static
val
design_bottom_navigation_icon_size
:
Int
static
val
design_bottom_navigation_item_max_width
:
Int
static
val
design_bottom_navigation_item_min_width
:
Int
static
val
design_bottom_navigation_margin
:
Int
static
val
design_bottom_navigation_shadow_height
:
Int
static
val
design_bottom_navigation_text_size
:
Int
static
val
design_bottom_sheet_modal_elevation
:
Int
static
val
design_bottom_sheet_peek_height_min
:
Int
static
val
design_fab_border_width
:
Int
static
val
design_fab_elevation
:
Int
static
val
design_fab_image_size
:
Int
static
val
design_fab_size_mini
:
Int
static
val
design_fab_size_normal
:
Int
static
val
design_fab_translation_z_hovered_focused
:
Int
static
val
design_fab_translation_z_pressed
:
Int
static
val
design_navigation_elevation
:
Int
static
val
design_navigation_icon_padding
:
Int
static
val
design_navigation_icon_size
:
Int
static
val
design_navigation_item_horizontal_padding
:
Int
static
val
design_navigation_item_icon_padding
:
Int
static
val
design_navigation_max_width
:
Int
static
val
design_navigation_padding_bottom
:
Int
static
val
design_navigation_separator_vertical_padding
:
Int
static
val
design_snackbar_action_inline_max_width
:
Int
static
val
design_snackbar_background_corner_radius
:
Int
static
val
design_snackbar_elevation
:
Int
static
val
design_snackbar_extra_spacing_horizontal
:
Int
static
val
design_snackbar_max_width
:
Int
static
val
design_snackbar_min_width
:
Int
static
val
design_snackbar_padding_horizontal
:
Int
static
val
design_snackbar_padding_vertical
:
Int
static
val
design_snackbar_padding_vertical_2lines
:
Int
static
val
design_snackbar_text_size
:
Int
static
val
design_tab_max_width
:
Int
static
val
design_tab_scrollable_min_width
:
Int
static
val
design_tab_text_size
:
Int
static
val
design_tab_text_size_2line
:
Int
static
val
design_textinput_caption_translate_y
:
Int
static
val
disabled_alpha_material_dark
:
Int
static
val
disabled_alpha_material_light
:
Int
static
val
fastscroll_default_thickness
:
Int
static
val
fastscroll_margin
:
Int
static
val
fastscroll_minimum_range
:
Int
static
val
highlight_alpha_material_colored
:
Int
static
val
highlight_alpha_material_dark
:
Int
static
val
highlight_alpha_material_light
:
Int
static
val
hint_alpha_material_dark
:
Int
static
val
hint_alpha_material_light
:
Int
static
val
hint_pressed_alpha_material_dark
:
Int
static
val
hint_pressed_alpha_material_light
:
Int
static
val
item_touch_helper_max_drag_scroll_per_frame
:
Int
static
val
item_touch_helper_swipe_escape_max_velocity
:
Int
static
val
item_touch_helper_swipe_escape_velocity
:
Int
static
val
mtrl_bottomappbar_fabOffsetEndMode
:
Int
static
val
mtrl_bottomappbar_fab_cradle_margin
:
Int
static
val
mtrl_bottomappbar_fab_cradle_rounded_corner_radius
:
Int
static
val
mtrl_bottomappbar_fab_cradle_vertical_offset
:
Int
static
val
mtrl_bottomappbar_height
:
Int
static
val
mtrl_btn_corner_radius
:
Int
static
val
mtrl_btn_dialog_btn_min_width
:
Int
static
val
mtrl_btn_disabled_elevation
:
Int
static
val
mtrl_btn_disabled_z
:
Int
static
val
mtrl_btn_elevation
:
Int
static
val
mtrl_btn_focused_z
:
Int
static
val
mtrl_btn_hovered_z
:
Int
static
val
mtrl_btn_icon_btn_padding_left
:
Int
static
val
mtrl_btn_icon_padding
:
Int
static
val
mtrl_btn_inset
:
Int
static
val
mtrl_btn_letter_spacing
:
Int
static
val
mtrl_btn_padding_bottom
:
Int
static
val
mtrl_btn_padding_left
:
Int
static
val
mtrl_btn_padding_right
:
Int
static
val
mtrl_btn_padding_top
:
Int
static
val
mtrl_btn_pressed_z
:
Int
static
val
mtrl_btn_stroke_size
:
Int
static
val
mtrl_btn_text_btn_icon_padding
:
Int
static
val
mtrl_btn_text_btn_padding_left
:
Int
static
val
mtrl_btn_text_btn_padding_right
:
Int
static
val
mtrl_btn_text_size
:
Int
static
val
mtrl_btn_z
:
Int
static
val
mtrl_card_elevation
:
Int
static
val
mtrl_card_spacing
:
Int
static
val
mtrl_chip_pressed_translation_z
:
Int
static
val
mtrl_chip_text_size
:
Int
static
val
mtrl_fab_elevation
:
Int
static
val
mtrl_fab_translation_z_hovered_focused
:
Int
static
val
mtrl_fab_translation_z_pressed
:
Int
static
val
mtrl_navigation_elevation
:
Int
static
val
mtrl_navigation_item_horizontal_padding
:
Int
static
val
mtrl_navigation_item_icon_padding
:
Int
static
val
mtrl_snackbar_background_corner_radius
:
Int
static
val
mtrl_snackbar_margin
:
Int
static
val
mtrl_textinput_box_bottom_offset
:
Int
static
val
mtrl_textinput_box_corner_radius_medium
:
Int
static
val
mtrl_textinput_box_corner_radius_small
:
Int
static
val
mtrl_textinput_box_label_cutout_padding
:
Int
static
val
mtrl_textinput_box_padding_end
:
Int
static
val
mtrl_textinput_box_stroke_width_default
:
Int
static
val
mtrl_textinput_box_stroke_width_focused
:
Int
static
val
mtrl_textinput_outline_box_expanded_padding
:
Int
static
val
mtrl_toolbar_default_height
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
static
val
tooltip_corner_radius
:
Int
static
val
tooltip_horizontal_padding
:
Int
static
val
tooltip_margin
:
Int
static
val
tooltip_precise_anchor_extra_offset
:
Int
static
val
tooltip_precise_anchor_threshold
:
Int
static
val
tooltip_vertical_padding
:
Int
static
val
tooltip_y_offset_non_touch
:
Int
static
val
tooltip_y_offset_touch
:
Int
class
drawable
Module Contents
static
val
abc_ab_share_pack_mtrl_alpha
:
Int
static
val
abc_action_bar_item_background_material
:
Int
static
val
abc_btn_borderless_material
:
Int
static
val
abc_btn_check_material
:
Int
static
val
abc_btn_check_to_on_mtrl_000
:
Int
static
val
abc_btn_check_to_on_mtrl_015
:
Int
static
val
abc_btn_colored_material
:
Int
static
val
abc_btn_default_mtrl_shape
:
Int
static
val
abc_btn_radio_material
:
Int
static
val
abc_btn_radio_to_on_mtrl_000
:
Int
static
val
abc_btn_radio_to_on_mtrl_015
:
Int
static
val
abc_btn_switch_to_on_mtrl_00001
:
Int
static
val
abc_btn_switch_to_on_mtrl_00012
:
Int
static
val
abc_cab_background_internal_bg
:
Int
static
val
abc_cab_background_top_material
:
Int
static
val
abc_cab_background_top_mtrl_alpha
:
Int
static
val
abc_control_background_material
:
Int
static
val
abc_dialog_material_background
:
Int
static
val
abc_edit_text_material
:
Int
static
val
abc_ic_ab_back_material
:
Int
static
val
abc_ic_arrow_drop_right_black_24dp
:
Int
static
val
abc_ic_clear_material
:
Int
static
val
abc_ic_commit_search_api_mtrl_alpha
:
Int
static
val
abc_ic_go_search_api_material
:
Int
static
val
abc_ic_menu_copy_mtrl_am_alpha
:
Int
static
val
abc_ic_menu_cut_mtrl_alpha
:
Int
static
val
abc_ic_menu_overflow_material
:
Int
static
val
abc_ic_menu_paste_mtrl_am_alpha
:
Int
static
val
abc_ic_menu_selectall_mtrl_alpha
:
Int
static
val
abc_ic_menu_share_mtrl_alpha
:
Int
static
val
abc_ic_search_api_material
:
Int
static
val
abc_ic_star_black_16dp
:
Int
static
val
abc_ic_star_black_36dp
:
Int
static
val
abc_ic_star_black_48dp
:
Int
static
val
abc_ic_star_half_black_16dp
:
Int
static
val
abc_ic_star_half_black_36dp
:
Int
static
val
abc_ic_star_half_black_48dp
:
Int
static
val
abc_ic_voice_search_api_material
:
Int
static
val
abc_item_background_holo_dark
:
Int
static
val
abc_item_background_holo_light
:
Int
static
val
abc_list_divider_material
:
Int
static
val
abc_list_divider_mtrl_alpha
:
Int
static
val
abc_list_focused_holo
:
Int
static
val
abc_list_longpressed_holo
:
Int
static
val
abc_list_pressed_holo_dark
:
Int
static
val
abc_list_pressed_holo_light
:
Int
static
val
abc_list_selector_background_transition_holo_dark
:
Int
static
val
abc_list_selector_background_transition_holo_light
:
Int
static
val
abc_list_selector_disabled_holo_dark
:
Int
static
val
abc_list_selector_disabled_holo_light
:
Int
static
val
abc_list_selector_holo_dark
:
Int
static
val
abc_list_selector_holo_light
:
Int
static
val
abc_menu_hardkey_panel_mtrl_mult
:
Int
static
val
abc_popup_background_mtrl_mult
:
Int
static
val
abc_ratingbar_indicator_material
:
Int
static
val
abc_ratingbar_material
:
Int
static
val
abc_ratingbar_small_material
:
Int
static
val
abc_scrubber_control_off_mtrl_alpha
:
Int
static
val
abc_scrubber_control_to_pressed_mtrl_000
:
Int
static
val
abc_scrubber_control_to_pressed_mtrl_005
:
Int
static
val
abc_scrubber_primary_mtrl_alpha
:
Int
static
val
abc_scrubber_track_mtrl_alpha
:
Int
static
val
abc_seekbar_thumb_material
:
Int
static
val
abc_seekbar_tick_mark_material
:
Int
static
val
abc_seekbar_track_material
:
Int
static
val
abc_spinner_mtrl_am_alpha
:
Int
static
val
abc_spinner_textfield_background_material
:
Int
static
val
abc_switch_thumb_material
:
Int
static
val
abc_switch_track_mtrl_alpha
:
Int
static
val
abc_tab_indicator_material
:
Int
static
val
abc_tab_indicator_mtrl_alpha
:
Int
static
val
abc_text_cursor_material
:
Int
static
val
abc_text_select_handle_left_mtrl_dark
:
Int
static
val
abc_text_select_handle_left_mtrl_light
:
Int
static
val
abc_text_select_handle_middle_mtrl_dark
:
Int
static
val
abc_text_select_handle_middle_mtrl_light
:
Int
static
val
abc_text_select_handle_right_mtrl_dark
:
Int
static
val
abc_text_select_handle_right_mtrl_light
:
Int
static
val
abc_textfield_activated_mtrl_alpha
:
Int
static
val
abc_textfield_default_mtrl_alpha
:
Int
static
val
abc_textfield_search_activated_mtrl_alpha
:
Int
static
val
abc_textfield_search_default_mtrl_alpha
:
Int
static
val
abc_textfield_search_material
:
Int
static
val
abc_vector_test
:
Int
static
val
avd_hide_password
:
Int
static
val
avd_show_password
:
Int
static
val
design_bottom_navigation_item_background
:
Int
static
val
design_fab_background
:
Int
static
val
design_ic_visibility
:
Int
static
val
design_ic_visibility_off
:
Int
static
val
design_password_eye
:
Int
static
val
design_snackbar_background
:
Int
static
val
ic_mtrl_chip_checked_black
:
Int
static
val
ic_mtrl_chip_checked_circle
:
Int
static
val
ic_mtrl_chip_close_circle
:
Int
static
val
mtrl_snackbar_background
:
Int
static
val
mtrl_tabs_default_indicator
:
Int
static
val
navigation_empty_icon
:
Int
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
static
val
tooltip_frame_dark
:
Int
static
val
tooltip_frame_light
:
Int
class
id
Module Contents
static
val
action_bar
:
Int
static
val
action_bar_activity_content
:
Int
static
val
action_bar_container
:
Int
static
val
action_bar_root
:
Int
static
val
action_bar_spinner
:
Int
static
val
action_bar_subtitle
:
Int
static
val
action_bar_title
:
Int
static
val
action_container
:
Int
static
val
action_context_bar
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_menu_divider
:
Int
static
val
action_menu_presenter
:
Int
static
val
action_mode_bar
:
Int
static
val
action_mode_bar_stub
:
Int
static
val
action_mode_close_button
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
activity_chooser_view_content
:
Int
static
val
add
:
Int
static
val
alertTitle
:
Int
static
val
async
:
Int
static
val
auto
:
Int
static
val
blocking
:
Int
static
val
bottom
:
Int
static
val
buttonPanel
:
Int
static
val
center
:
Int
static
val
checkbox
:
Int
static
val
chronometer
:
Int
static
val
container
:
Int
static
val
content
:
Int
static
val
contentPanel
:
Int
static
val
coordinator
:
Int
static
val
custom
:
Int
static
val
customPanel
:
Int
static
val
decor_content_parent
:
Int
static
val
default_activity_button
:
Int
static
val
design_bottom_sheet
:
Int
static
val
design_menu_item_action_area
:
Int
static
val
design_menu_item_action_area_stub
:
Int
static
val
design_menu_item_text
:
Int
static
val
design_navigation_view
:
Int
static
val
edit_query
:
Int
static
val
end
:
Int
static
val
expand_activities_button
:
Int
static
val
expanded_menu
:
Int
static
val
fill
:
Int
static
val
filled
:
Int
static
val
fixed
:
Int
static
val
forever
:
Int
static
val
ghost_view
:
Int
static
val
group_divider
:
Int
static
val
home
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
image
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
item_touch_helper_previous_elevation
:
Int
static
val
labeled
:
Int
static
val
largeLabel
:
Int
static
val
left
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
listMode
:
Int
static
val
list_item
:
Int
static
val
masked
:
Int
static
val
message
:
Int
static
val
mini
:
Int
static
val
mtrl_child_content_container
:
Int
static
val
mtrl_internal_children_alpha_tag
:
Int
static
val
multiply
:
Int
static
val
navigation_header_container
:
Int
static
val
none
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
outline
:
Int
static
val
parallax
:
Int
static
val
parentPanel
:
Int
static
val
parent_matrix
:
Int
static
val
pin
:
Int
static
val
progress_circular
:
Int
static
val
progress_horizontal
:
Int
static
val
radio
:
Int
static
val
right
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
save_image_matrix
:
Int
static
val
save_non_transition_alpha
:
Int
static
val
save_scale_type
:
Int
static
val
screen
:
Int
static
val
scrollIndicatorDown
:
Int
static
val
scrollIndicatorUp
:
Int
static
val
scrollView
:
Int
static
val
scrollable
:
Int
static
val
search_badge
:
Int
static
val
search_bar
:
Int
static
val
search_button
:
Int
static
val
search_close_btn
:
Int
static
val
search_edit_frame
:
Int
static
val
search_go_btn
:
Int
static
val
search_mag_icon
:
Int
static
val
search_plate
:
Int
static
val
search_src_text
:
Int
static
val
search_voice_btn
:
Int
static
val
select_dialog_listview
:
Int
static
val
selected
:
Int
static
val
shortcut
:
Int
static
val
smallLabel
:
Int
static
val
snackbar_action
:
Int
static
val
snackbar_text
:
Int
static
val
spacer
:
Int
static
val
split_action_bar
:
Int
static
val
src_atop
:
Int
static
val
src_in
:
Int
static
val
src_over
:
Int
static
val
start
:
Int
static
val
stretch
:
Int
static
val
submenuarrow
:
Int
static
val
submit_area
:
Int
static
val
tabMode
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
textSpacerNoButtons
:
Int
static
val
textSpacerNoTitle
:
Int
static
val
text_input_password_toggle
:
Int
static
val
textinput_counter
:
Int
static
val
textinput_error
:
Int
static
val
textinput_helper_text
:
Int
static
val
time
:
Int
static
val
title
:
Int
static
val
titleDividerNoCustom
:
Int
static
val
title_template
:
Int
static
val
top
:
Int
static
val
topPanel
:
Int
static
val
touch_outside
:
Int
static
val
transition_current_scene
:
Int
static
val
transition_layout_save
:
Int
static
val
transition_position
:
Int
static
val
transition_scene_layoutid_cache
:
Int
static
val
transition_transform
:
Int
static
val
uniform
:
Int
static
val
unlabeled
:
Int
static
val
up
:
Int
static
val
view_offset_helper
:
Int
static
val
visible
:
Int
static
val
wrap_content
:
Int
class
integer
Module Contents
static
val
abc_config_activityDefaultDur
:
Int
static
val
abc_config_activityShortDur
:
Int
static
val
app_bar_elevation_anim_duration
:
Int
static
val
bottom_sheet_slide_duration
:
Int
static
val
cancel_button_image_alpha
:
Int
static
val
config_tooltipAnimTime
:
Int
static
val
design_snackbar_text_max_lines
:
Int
static
val
design_tab_indicator_anim_duration_ms
:
Int
static
val
hide_password_duration
:
Int
static
val
mtrl_btn_anim_delay_ms
:
Int
static
val
mtrl_btn_anim_duration_ms
:
Int
static
val
mtrl_chip_anim_duration
:
Int
static
val
mtrl_tab_indicator_anim_duration_ms
:
Int
static
val
show_password_duration
:
Int
static
val
status_bar_notification_info_maxnum
:
Int
class
interpolator
Module Contents
static
val
mtrl_fast_out_linear_in
:
Int
static
val
mtrl_fast_out_slow_in
:
Int
static
val
mtrl_linear
:
Int
static
val
mtrl_linear_out_slow_in
:
Int
class
layout
Module Contents
static
val
abc_action_bar_title_item
:
Int
static
val
abc_action_bar_up_container
:
Int
static
val
abc_action_menu_item_layout
:
Int
static
val
abc_action_menu_layout
:
Int
static
val
abc_action_mode_bar
:
Int
static
val
abc_action_mode_close_item_material
:
Int
static
val
abc_activity_chooser_view
:
Int
static
val
abc_activity_chooser_view_list_item
:
Int
static
val
abc_alert_dialog_button_bar_material
:
Int
static
val
abc_alert_dialog_material
:
Int
static
val
abc_alert_dialog_title_material
:
Int
static
val
abc_cascading_menu_item_layout
:
Int
static
val
abc_dialog_title_material
:
Int
static
val
abc_expanded_menu_layout
:
Int
static
val
abc_list_menu_item_checkbox
:
Int
static
val
abc_list_menu_item_icon
:
Int
static
val
abc_list_menu_item_layout
:
Int
static
val
abc_list_menu_item_radio
:
Int
static
val
abc_popup_menu_header_item_layout
:
Int
static
val
abc_popup_menu_item_layout
:
Int
static
val
abc_screen_content_include
:
Int
static
val
abc_screen_simple
:
Int
static
val
abc_screen_simple_overlay_action_mode
:
Int
static
val
abc_screen_toolbar
:
Int
static
val
abc_search_dropdown_item_icons_2line
:
Int
static
val
abc_search_view
:
Int
static
val
abc_select_dialog_material
:
Int
static
val
abc_tooltip
:
Int
static
val
design_bottom_navigation_item
:
Int
static
val
design_bottom_sheet_dialog
:
Int
static
val
design_layout_snackbar
:
Int
static
val
design_layout_snackbar_include
:
Int
static
val
design_layout_tab_icon
:
Int
static
val
design_layout_tab_text
:
Int
static
val
design_menu_item_action_area
:
Int
static
val
design_navigation_item
:
Int
static
val
design_navigation_item_header
:
Int
static
val
design_navigation_item_separator
:
Int
static
val
design_navigation_item_subheader
:
Int
static
val
design_navigation_menu
:
Int
static
val
design_navigation_menu_item
:
Int
static
val
design_text_input_password_icon
:
Int
static
val
mtrl_layout_snackbar
:
Int
static
val
mtrl_layout_snackbar_include
:
Int
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
static
val
select_dialog_item_material
:
Int
static
val
select_dialog_multichoice_material
:
Int
static
val
select_dialog_singlechoice_material
:
Int
static
val
support_simple_spinner_dropdown_item
:
Int
class
string
Module Contents
static
val
abc_action_bar_home_description
:
Int
static
val
abc_action_bar_up_description
:
Int
static
val
abc_action_menu_overflow_description
:
Int
static
val
abc_action_mode_done
:
Int
static
val
abc_activity_chooser_view_see_all
:
Int
static
val
abc_activitychooserview_choose_application
:
Int
static
val
abc_capital_off
:
Int
static
val
abc_capital_on
:
Int
static
val
abc_font_family_body_1_material
:
Int
static
val
abc_font_family_body_2_material
:
Int
static
val
abc_font_family_button_material
:
Int
static
val
abc_font_family_caption_material
:
Int
static
val
abc_font_family_display_1_material
:
Int
static
val
abc_font_family_display_2_material
:
Int
static
val
abc_font_family_display_3_material
:
Int
static
val
abc_font_family_display_4_material
:
Int
static
val
abc_font_family_headline_material
:
Int
static
val
abc_font_family_menu_material
:
Int
static
val
abc_font_family_subhead_material
:
Int
static
val
abc_font_family_title_material
:
Int
static
val
abc_menu_alt_shortcut_label
:
Int
static
val
abc_menu_ctrl_shortcut_label
:
Int
static
val
abc_menu_delete_shortcut_label
:
Int
static
val
abc_menu_enter_shortcut_label
:
Int
static
val
abc_menu_function_shortcut_label
:
Int
static
val
abc_menu_meta_shortcut_label
:
Int
static
val
abc_menu_shift_shortcut_label
:
Int
static
val
abc_menu_space_shortcut_label
:
Int
static
val
abc_menu_sym_shortcut_label
:
Int
static
val
abc_prepend_shortcut_label
:
Int
static
val
abc_search_hint
:
Int
static
val
abc_searchview_description_clear
:
Int
static
val
abc_searchview_description_query
:
Int
static
val
abc_searchview_description_search
:
Int
static
val
abc_searchview_description_submit
:
Int
static
val
abc_searchview_description_voice
:
Int
static
val
abc_shareactionprovider_share_with
:
Int
static
val
abc_shareactionprovider_share_with_application
:
Int
static
val
abc_toolbar_collapse_description
:
Int
static
val
appbar_scrolling_view_behavior
:
Int
static
val
bottom_sheet_behavior
:
Int
static
val
character_counter_content_description
:
Int
static
val
character_counter_pattern
:
Int
static
val
fab_transformation_scrim_behavior
:
Int
static
val
fab_transformation_sheet_behavior
:
Int
static
val
hide_bottom_view_on_scroll_behavior
:
Int
static
val
mtrl_chip_close_icon_content_description
:
Int
static
val
password_toggle_content_description
:
Int
static
val
path_password_eye
:
Int
static
val
path_password_eye_mask_strike_through
:
Int
static
val
path_password_eye_mask_visible
:
Int
static
val
path_password_strike_through
:
Int
static
val
search_menu_title
:
Int
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
AlertDialog_AppCompat
:
Int
static
val
AlertDialog_AppCompat_Light
:
Int
static
val
Animation_AppCompat_Dialog
:
Int
static
val
Animation_AppCompat_DropDownUp
:
Int
static
val
Animation_AppCompat_Tooltip
:
Int
static
val
Animation_Design_BottomSheetDialog
:
Int
static
val
Base_AlertDialog_AppCompat
:
Int
static
val
Base_AlertDialog_AppCompat_Light
:
Int
static
val
Base_Animation_AppCompat_Dialog
:
Int
static
val
Base_Animation_AppCompat_DropDownUp
:
Int
static
val
Base_Animation_AppCompat_Tooltip
:
Int
static
val
Base_CardView
:
Int
static
val
Base_DialogWindowTitleBackground_AppCompat
:
Int
static
val
Base_DialogWindowTitle_AppCompat
:
Int
static
val
Base_TextAppearance_AppCompat
:
Int
static
val
Base_TextAppearance_AppCompat_Body1
:
Int
static
val
Base_TextAppearance_AppCompat_Body2
:
Int
static
val
Base_TextAppearance_AppCompat_Button
:
Int
static
val
Base_TextAppearance_AppCompat_Caption
:
Int
static
val
Base_TextAppearance_AppCompat_Display1
:
Int
static
val
Base_TextAppearance_AppCompat_Display2
:
Int
static
val
Base_TextAppearance_AppCompat_Display3
:
Int
static
val
Base_TextAppearance_AppCompat_Display4
:
Int
static
val
Base_TextAppearance_AppCompat_Headline
:
Int
static
val
Base_TextAppearance_AppCompat_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Large
:
Int
static
val
Base_TextAppearance_AppCompat_Large_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
:
Int
static
val
Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
:
Int
static
val
Base_TextAppearance_AppCompat_Medium
:
Int
static
val
Base_TextAppearance_AppCompat_Medium_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Menu
:
Int
static
val
Base_TextAppearance_AppCompat_SearchResult
:
Int
static
val
Base_TextAppearance_AppCompat_SearchResult_Subtitle
:
Int
static
val
Base_TextAppearance_AppCompat_SearchResult_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Small
:
Int
static
val
Base_TextAppearance_AppCompat_Small_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Subhead
:
Int
static
val
Base_TextAppearance_AppCompat_Subhead_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Title_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Tooltip
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Menu
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionMode_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button_Colored
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_DropDownItem
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_PopupMenu_Header
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_PopupMenu_Large
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_PopupMenu_Small
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Switch
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem
:
Int
static
val
Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item
:
Int
static
val
Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle
:
Int
static
val
Base_TextAppearance_Widget_AppCompat_Toolbar_Title
:
Int
static
val
Base_ThemeOverlay_AppCompat
:
Int
static
val
Base_ThemeOverlay_AppCompat_ActionBar
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dark
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dark_ActionBar
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dialog
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dialog_Alert
:
Int
static
val
Base_ThemeOverlay_AppCompat_Light
:
Int
static
val
Base_ThemeOverlay_MaterialComponents_Dialog
:
Int
static
val
Base_ThemeOverlay_MaterialComponents_Dialog_Alert
:
Int
static
val
Base_Theme_AppCompat
:
Int
static
val
Base_Theme_AppCompat_CompactMenu
:
Int
static
val
Base_Theme_AppCompat_Dialog
:
Int
static
val
Base_Theme_AppCompat_DialogWhenLarge
:
Int
static
val
Base_Theme_AppCompat_Dialog_Alert
:
Int
static
val
Base_Theme_AppCompat_Dialog_FixedSize
:
Int
static
val
Base_Theme_AppCompat_Dialog_MinWidth
:
Int
static
val
Base_Theme_AppCompat_Light
:
Int
static
val
Base_Theme_AppCompat_Light_DarkActionBar
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog
:
Int
static
val
Base_Theme_AppCompat_Light_DialogWhenLarge
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog_Alert
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog_FixedSize
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog_MinWidth
:
Int
static
val
Base_Theme_MaterialComponents
:
Int
static
val
Base_Theme_MaterialComponents_Bridge
:
Int
static
val
Base_Theme_MaterialComponents_CompactMenu
:
Int
static
val
Base_Theme_MaterialComponents_Dialog
:
Int
static
val
Base_Theme_MaterialComponents_DialogWhenLarge
:
Int
static
val
Base_Theme_MaterialComponents_Dialog_Alert
:
Int
static
val
Base_Theme_MaterialComponents_Dialog_FixedSize
:
Int
static
val
Base_Theme_MaterialComponents_Dialog_MinWidth
:
Int
static
val
Base_Theme_MaterialComponents_Light
:
Int
static
val
Base_Theme_MaterialComponents_Light_Bridge
:
Int
static
val
Base_Theme_MaterialComponents_Light_DarkActionBar
:
Int
static
val
Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge
:
Int
static
val
Base_Theme_MaterialComponents_Light_Dialog
:
Int
static
val
Base_Theme_MaterialComponents_Light_DialogWhenLarge
:
Int
static
val
Base_Theme_MaterialComponents_Light_Dialog_Alert
:
Int
static
val
Base_Theme_MaterialComponents_Light_Dialog_FixedSize
:
Int
static
val
Base_Theme_MaterialComponents_Light_Dialog_MinWidth
:
Int
static
val
Base_V14_ThemeOverlay_MaterialComponents_Dialog
:
Int
static
val
Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert
:
Int
static
val
Base_V14_Theme_MaterialComponents
:
Int
static
val
Base_V14_Theme_MaterialComponents_Bridge
:
Int
static
val
Base_V14_Theme_MaterialComponents_Dialog
:
Int
static
val
Base_V14_Theme_MaterialComponents_Light
:
Int
static
val
Base_V14_Theme_MaterialComponents_Light_Bridge
:
Int
static
val
Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge
:
Int
static
val
Base_V14_Theme_MaterialComponents_Light_Dialog
:
Int
static
val
Base_V21_ThemeOverlay_AppCompat_Dialog
:
Int
static
val
Base_V21_Theme_AppCompat
:
Int
static
val
Base_V21_Theme_AppCompat_Dialog
:
Int
static
val
Base_V21_Theme_AppCompat_Light
:
Int
static
val
Base_V21_Theme_AppCompat_Light_Dialog
:
Int
static
val
Base_V22_Theme_AppCompat
:
Int
static
val
Base_V22_Theme_AppCompat_Light
:
Int
static
val
Base_V23_Theme_AppCompat
:
Int
static
val
Base_V23_Theme_AppCompat_Light
:
Int
static
val
Base_V26_Theme_AppCompat
:
Int
static
val
Base_V26_Theme_AppCompat_Light
:
Int
static
val
Base_V26_Widget_AppCompat_Toolbar
:
Int
static
val
Base_V28_Theme_AppCompat
:
Int
static
val
Base_V28_Theme_AppCompat_Light
:
Int
static
val
Base_V7_ThemeOverlay_AppCompat_Dialog
:
Int
static
val
Base_V7_Theme_AppCompat
:
Int
static
val
Base_V7_Theme_AppCompat_Dialog
:
Int
static
val
Base_V7_Theme_AppCompat_Light
:
Int
static
val
Base_V7_Theme_AppCompat_Light_Dialog
:
Int
static
val
Base_V7_Widget_AppCompat_AutoCompleteTextView
:
Int
static
val
Base_V7_Widget_AppCompat_EditText
:
Int
static
val
Base_V7_Widget_AppCompat_Toolbar
:
Int
static
val
Base_Widget_AppCompat_ActionBar
:
Int
static
val
Base_Widget_AppCompat_ActionBar_Solid
:
Int
static
val
Base_Widget_AppCompat_ActionBar_TabBar
:
Int
static
val
Base_Widget_AppCompat_ActionBar_TabText
:
Int
static
val
Base_Widget_AppCompat_ActionBar_TabView
:
Int
static
val
Base_Widget_AppCompat_ActionButton
:
Int
static
val
Base_Widget_AppCompat_ActionButton_CloseMode
:
Int
static
val
Base_Widget_AppCompat_ActionButton_Overflow
:
Int
static
val
Base_Widget_AppCompat_ActionMode
:
Int
static
val
Base_Widget_AppCompat_ActivityChooserView
:
Int
static
val
Base_Widget_AppCompat_AutoCompleteTextView
:
Int
static
val
Base_Widget_AppCompat_Button
:
Int
static
val
Base_Widget_AppCompat_ButtonBar
:
Int
static
val
Base_Widget_AppCompat_ButtonBar_AlertDialog
:
Int
static
val
Base_Widget_AppCompat_Button_Borderless
:
Int
static
val
Base_Widget_AppCompat_Button_Borderless_Colored
:
Int
static
val
Base_Widget_AppCompat_Button_ButtonBar_AlertDialog
:
Int
static
val
Base_Widget_AppCompat_Button_Colored
:
Int
static
val
Base_Widget_AppCompat_Button_Small
:
Int
static
val
Base_Widget_AppCompat_CompoundButton_CheckBox
:
Int
static
val
Base_Widget_AppCompat_CompoundButton_RadioButton
:
Int
static
val
Base_Widget_AppCompat_CompoundButton_Switch
:
Int
static
val
Base_Widget_AppCompat_DrawerArrowToggle
:
Int
static
val
Base_Widget_AppCompat_DrawerArrowToggle_Common
:
Int
static
val
Base_Widget_AppCompat_DropDownItem_Spinner
:
Int
static
val
Base_Widget_AppCompat_EditText
:
Int
static
val
Base_Widget_AppCompat_ImageButton
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_Solid
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabBar
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabText
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabView
:
Int
static
val
Base_Widget_AppCompat_Light_PopupMenu
:
Int
static
val
Base_Widget_AppCompat_Light_PopupMenu_Overflow
:
Int
static
val
Base_Widget_AppCompat_ListMenuView
:
Int
static
val
Base_Widget_AppCompat_ListPopupWindow
:
Int
static
val
Base_Widget_AppCompat_ListView
:
Int
static
val
Base_Widget_AppCompat_ListView_DropDown
:
Int
static
val
Base_Widget_AppCompat_ListView_Menu
:
Int
static
val
Base_Widget_AppCompat_PopupMenu
:
Int
static
val
Base_Widget_AppCompat_PopupMenu_Overflow
:
Int
static
val
Base_Widget_AppCompat_PopupWindow
:
Int
static
val
Base_Widget_AppCompat_ProgressBar
:
Int
static
val
Base_Widget_AppCompat_ProgressBar_Horizontal
:
Int
static
val
Base_Widget_AppCompat_RatingBar
:
Int
static
val
Base_Widget_AppCompat_RatingBar_Indicator
:
Int
static
val
Base_Widget_AppCompat_RatingBar_Small
:
Int
static
val
Base_Widget_AppCompat_SearchView
:
Int
static
val
Base_Widget_AppCompat_SearchView_ActionBar
:
Int
static
val
Base_Widget_AppCompat_SeekBar
:
Int
static
val
Base_Widget_AppCompat_SeekBar_Discrete
:
Int
static
val
Base_Widget_AppCompat_Spinner
:
Int
static
val
Base_Widget_AppCompat_Spinner_Underlined
:
Int
static
val
Base_Widget_AppCompat_TextView_SpinnerItem
:
Int
static
val
Base_Widget_AppCompat_Toolbar
:
Int
static
val
Base_Widget_AppCompat_Toolbar_Button_Navigation
:
Int
static
val
Base_Widget_Design_TabLayout
:
Int
static
val
Base_Widget_MaterialComponents_Chip
:
Int
static
val
Base_Widget_MaterialComponents_TextInputEditText
:
Int
static
val
Base_Widget_MaterialComponents_TextInputLayout
:
Int
static
val
CardView
:
Int
static
val
CardView_Dark
:
Int
static
val
CardView_Light
:
Int
static
val
Platform_AppCompat
:
Int
static
val
Platform_AppCompat_Light
:
Int
static
val
Platform_MaterialComponents
:
Int
static
val
Platform_MaterialComponents_Dialog
:
Int
static
val
Platform_MaterialComponents_Light
:
Int
static
val
Platform_MaterialComponents_Light_Dialog
:
Int
static
val
Platform_ThemeOverlay_AppCompat
:
Int
static
val
Platform_ThemeOverlay_AppCompat_Dark
:
Int
static
val
Platform_ThemeOverlay_AppCompat_Light
:
Int
static
val
Platform_V21_AppCompat
:
Int
static
val
Platform_V21_AppCompat_Light
:
Int
static
val
Platform_V25_AppCompat
:
Int
static
val
Platform_V25_AppCompat_Light
:
Int
static
val
Platform_Widget_AppCompat_Spinner
:
Int
static
val
RtlOverlay_DialogWindowTitle_AppCompat
:
Int
static
val
RtlOverlay_Widget_AppCompat_ActionBar_TitleItem
:
Int
static
val
RtlOverlay_Widget_AppCompat_DialogTitle_Icon
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_Text
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_Title
:
Int
static
val
RtlOverlay_Widget_AppCompat_SearchView_MagIcon
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Query
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Text
:
Int
static
val
RtlUnderlay_Widget_AppCompat_ActionButton
:
Int
static
val
RtlUnderlay_Widget_AppCompat_ActionButton_Overflow
:
Int
static
val
TextAppearance_AppCompat
:
Int
static
val
TextAppearance_AppCompat_Body1
:
Int
static
val
TextAppearance_AppCompat_Body2
:
Int
static
val
TextAppearance_AppCompat_Button
:
Int
static
val
TextAppearance_AppCompat_Caption
:
Int
static
val
TextAppearance_AppCompat_Display1
:
Int
static
val
TextAppearance_AppCompat_Display2
:
Int
static
val
TextAppearance_AppCompat_Display3
:
Int
static
val
TextAppearance_AppCompat_Display4
:
Int
static
val
TextAppearance_AppCompat_Headline
:
Int
static
val
TextAppearance_AppCompat_Inverse
:
Int
static
val
TextAppearance_AppCompat_Large
:
Int
static
val
TextAppearance_AppCompat_Large_Inverse
:
Int
static
val
TextAppearance_AppCompat_Light_SearchResult_Subtitle
:
Int
static
val
TextAppearance_AppCompat_Light_SearchResult_Title
:
Int
static
val
TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
:
Int
static
val
TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
:
Int
static
val
TextAppearance_AppCompat_Medium
:
Int
static
val
TextAppearance_AppCompat_Medium_Inverse
:
Int
static
val
TextAppearance_AppCompat_Menu
:
Int
static
val
TextAppearance_AppCompat_SearchResult_Subtitle
:
Int
static
val
TextAppearance_AppCompat_SearchResult_Title
:
Int
static
val
TextAppearance_AppCompat_Small
:
Int
static
val
TextAppearance_AppCompat_Small_Inverse
:
Int
static
val
TextAppearance_AppCompat_Subhead
:
Int
static
val
TextAppearance_AppCompat_Subhead_Inverse
:
Int
static
val
TextAppearance_AppCompat_Title
:
Int
static
val
TextAppearance_AppCompat_Title_Inverse
:
Int
static
val
TextAppearance_AppCompat_Tooltip
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Menu
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Subtitle
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Title
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Subtitle
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Title
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_Button
:
Int
static
val
TextAppearance_AppCompat_Widget_Button_Borderless_Colored
:
Int
static
val
TextAppearance_AppCompat_Widget_Button_Colored
:
Int
static
val
TextAppearance_AppCompat_Widget_Button_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_DropDownItem
:
Int
static
val
TextAppearance_AppCompat_Widget_PopupMenu_Header
:
Int
static
val
TextAppearance_AppCompat_Widget_PopupMenu_Large
:
Int
static
val
TextAppearance_AppCompat_Widget_PopupMenu_Small
:
Int
static
val
TextAppearance_AppCompat_Widget_Switch
:
Int
static
val
TextAppearance_AppCompat_Widget_TextView_SpinnerItem
:
Int
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
TextAppearance_Design_CollapsingToolbar_Expanded
:
Int
static
val
TextAppearance_Design_Counter
:
Int
static
val
TextAppearance_Design_Counter_Overflow
:
Int
static
val
TextAppearance_Design_Error
:
Int
static
val
TextAppearance_Design_HelperText
:
Int
static
val
TextAppearance_Design_Hint
:
Int
static
val
TextAppearance_Design_Snackbar_Message
:
Int
static
val
TextAppearance_Design_Tab
:
Int
static
val
TextAppearance_MaterialComponents_Body1
:
Int
static
val
TextAppearance_MaterialComponents_Body2
:
Int
static
val
TextAppearance_MaterialComponents_Button
:
Int
static
val
TextAppearance_MaterialComponents_Caption
:
Int
static
val
TextAppearance_MaterialComponents_Chip
:
Int
static
val
TextAppearance_MaterialComponents_Headline1
:
Int
static
val
TextAppearance_MaterialComponents_Headline2
:
Int
static
val
TextAppearance_MaterialComponents_Headline3
:
Int
static
val
TextAppearance_MaterialComponents_Headline4
:
Int
static
val
TextAppearance_MaterialComponents_Headline5
:
Int
static
val
TextAppearance_MaterialComponents_Headline6
:
Int
static
val
TextAppearance_MaterialComponents_Overline
:
Int
static
val
TextAppearance_MaterialComponents_Subtitle1
:
Int
static
val
TextAppearance_MaterialComponents_Subtitle2
:
Int
static
val
TextAppearance_MaterialComponents_Tab
:
Int
static
val
TextAppearance_Widget_AppCompat_ExpandedMenu_Item
:
Int
static
val
TextAppearance_Widget_AppCompat_Toolbar_Subtitle
:
Int
static
val
TextAppearance_Widget_AppCompat_Toolbar_Title
:
Int
static
val
ThemeOverlay_AppCompat
:
Int
static
val
ThemeOverlay_AppCompat_ActionBar
:
Int
static
val
ThemeOverlay_AppCompat_Dark
:
Int
static
val
ThemeOverlay_AppCompat_Dark_ActionBar
:
Int
static
val
ThemeOverlay_AppCompat_Dialog
:
Int
static
val
ThemeOverlay_AppCompat_Dialog_Alert
:
Int
static
val
ThemeOverlay_AppCompat_Light
:
Int
static
val
ThemeOverlay_MaterialComponents
:
Int
static
val
ThemeOverlay_MaterialComponents_ActionBar
:
Int
static
val
ThemeOverlay_MaterialComponents_Dark
:
Int
static
val
ThemeOverlay_MaterialComponents_Dark_ActionBar
:
Int
static
val
ThemeOverlay_MaterialComponents_Dialog
:
Int
static
val
ThemeOverlay_MaterialComponents_Dialog_Alert
:
Int
static
val
ThemeOverlay_MaterialComponents_Light
:
Int
static
val
ThemeOverlay_MaterialComponents_TextInputEditText
:
Int
static
val
ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox
:
Int
static
val
ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense
:
Int
static
val
ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox
:
Int
static
val
ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense
:
Int
static
val
Theme_AppCompat
:
Int
static
val
Theme_AppCompat_CompactMenu
:
Int
static
val
Theme_AppCompat_DayNight
:
Int
static
val
Theme_AppCompat_DayNight_DarkActionBar
:
Int
static
val
Theme_AppCompat_DayNight_Dialog
:
Int
static
val
Theme_AppCompat_DayNight_DialogWhenLarge
:
Int
static
val
Theme_AppCompat_DayNight_Dialog_Alert
:
Int
static
val
Theme_AppCompat_DayNight_Dialog_MinWidth
:
Int
static
val
Theme_AppCompat_DayNight_NoActionBar
:
Int
static
val
Theme_AppCompat_Dialog
:
Int
static
val
Theme_AppCompat_DialogWhenLarge
:
Int
static
val
Theme_AppCompat_Dialog_Alert
:
Int
static
val
Theme_AppCompat_Dialog_MinWidth
:
Int
static
val
Theme_AppCompat_Light
:
Int
static
val
Theme_AppCompat_Light_DarkActionBar
:
Int
static
val
Theme_AppCompat_Light_Dialog
:
Int
static
val
Theme_AppCompat_Light_DialogWhenLarge
:
Int
static
val
Theme_AppCompat_Light_Dialog_Alert
:
Int
static
val
Theme_AppCompat_Light_Dialog_MinWidth
:
Int
static
val
Theme_AppCompat_Light_NoActionBar
:
Int
static
val
Theme_AppCompat_NoActionBar
:
Int
static
val
Theme_Design
:
Int
static
val
Theme_Design_BottomSheetDialog
:
Int
static
val
Theme_Design_Light
:
Int
static
val
Theme_Design_Light_BottomSheetDialog
:
Int
static
val
Theme_Design_Light_NoActionBar
:
Int
static
val
Theme_Design_NoActionBar
:
Int
static
val
Theme_MaterialComponents
:
Int
static
val
Theme_MaterialComponents_BottomSheetDialog
:
Int
static
val
Theme_MaterialComponents_Bridge
:
Int
static
val
Theme_MaterialComponents_CompactMenu
:
Int
static
val
Theme_MaterialComponents_Dialog
:
Int
static
val
Theme_MaterialComponents_DialogWhenLarge
:
Int
static
val
Theme_MaterialComponents_Dialog_Alert
:
Int
static
val
Theme_MaterialComponents_Dialog_MinWidth
:
Int
static
val
Theme_MaterialComponents_Light
:
Int
static
val
Theme_MaterialComponents_Light_BottomSheetDialog
:
Int
static
val
Theme_MaterialComponents_Light_Bridge
:
Int
static
val
Theme_MaterialComponents_Light_DarkActionBar
:
Int
static
val
Theme_MaterialComponents_Light_DarkActionBar_Bridge
:
Int
static
val
Theme_MaterialComponents_Light_Dialog
:
Int
static
val
Theme_MaterialComponents_Light_DialogWhenLarge
:
Int
static
val
Theme_MaterialComponents_Light_Dialog_Alert
:
Int
static
val
Theme_MaterialComponents_Light_Dialog_MinWidth
:
Int
static
val
Theme_MaterialComponents_Light_NoActionBar
:
Int
static
val
Theme_MaterialComponents_Light_NoActionBar_Bridge
:
Int
static
val
Theme_MaterialComponents_NoActionBar
:
Int
static
val
Theme_MaterialComponents_NoActionBar_Bridge
:
Int
static
val
Widget_AppCompat_ActionBar
:
Int
static
val
Widget_AppCompat_ActionBar_Solid
:
Int
static
val
Widget_AppCompat_ActionBar_TabBar
:
Int
static
val
Widget_AppCompat_ActionBar_TabText
:
Int
static
val
Widget_AppCompat_ActionBar_TabView
:
Int
static
val
Widget_AppCompat_ActionButton
:
Int
static
val
Widget_AppCompat_ActionButton_CloseMode
:
Int
static
val
Widget_AppCompat_ActionButton_Overflow
:
Int
static
val
Widget_AppCompat_ActionMode
:
Int
static
val
Widget_AppCompat_ActivityChooserView
:
Int
static
val
Widget_AppCompat_AutoCompleteTextView
:
Int
static
val
Widget_AppCompat_Button
:
Int
static
val
Widget_AppCompat_ButtonBar
:
Int
static
val
Widget_AppCompat_ButtonBar_AlertDialog
:
Int
static
val
Widget_AppCompat_Button_Borderless
:
Int
static
val
Widget_AppCompat_Button_Borderless_Colored
:
Int
static
val
Widget_AppCompat_Button_ButtonBar_AlertDialog
:
Int
static
val
Widget_AppCompat_Button_Colored
:
Int
static
val
Widget_AppCompat_Button_Small
:
Int
static
val
Widget_AppCompat_CompoundButton_CheckBox
:
Int
static
val
Widget_AppCompat_CompoundButton_RadioButton
:
Int
static
val
Widget_AppCompat_CompoundButton_Switch
:
Int
static
val
Widget_AppCompat_DrawerArrowToggle
:
Int
static
val
Widget_AppCompat_DropDownItem_Spinner
:
Int
static
val
Widget_AppCompat_EditText
:
Int
static
val
Widget_AppCompat_ImageButton
:
Int
static
val
Widget_AppCompat_Light_ActionBar
:
Int
static
val
Widget_AppCompat_Light_ActionBar_Solid
:
Int
static
val
Widget_AppCompat_Light_ActionBar_Solid_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabBar
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabBar_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabText
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabText_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabView
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabView_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionButton
:
Int
static
val
Widget_AppCompat_Light_ActionButton_CloseMode
:
Int
static
val
Widget_AppCompat_Light_ActionButton_Overflow
:
Int
static
val
Widget_AppCompat_Light_ActionMode_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActivityChooserView
:
Int
static
val
Widget_AppCompat_Light_AutoCompleteTextView
:
Int
static
val
Widget_AppCompat_Light_DropDownItem_Spinner
:
Int
static
val
Widget_AppCompat_Light_ListPopupWindow
:
Int
static
val
Widget_AppCompat_Light_ListView_DropDown
:
Int
static
val
Widget_AppCompat_Light_PopupMenu
:
Int
static
val
Widget_AppCompat_Light_PopupMenu_Overflow
:
Int
static
val
Widget_AppCompat_Light_SearchView
:
Int
static
val
Widget_AppCompat_Light_Spinner_DropDown_ActionBar
:
Int
static
val
Widget_AppCompat_ListMenuView
:
Int
static
val
Widget_AppCompat_ListPopupWindow
:
Int
static
val
Widget_AppCompat_ListView
:
Int
static
val
Widget_AppCompat_ListView_DropDown
:
Int
static
val
Widget_AppCompat_ListView_Menu
:
Int
static
val
Widget_AppCompat_PopupMenu
:
Int
static
val
Widget_AppCompat_PopupMenu_Overflow
:
Int
static
val
Widget_AppCompat_PopupWindow
:
Int
static
val
Widget_AppCompat_ProgressBar
:
Int
static
val
Widget_AppCompat_ProgressBar_Horizontal
:
Int
static
val
Widget_AppCompat_RatingBar
:
Int
static
val
Widget_AppCompat_RatingBar_Indicator
:
Int
static
val
Widget_AppCompat_RatingBar_Small
:
Int
static
val
Widget_AppCompat_SearchView
:
Int
static
val
Widget_AppCompat_SearchView_ActionBar
:
Int
static
val
Widget_AppCompat_SeekBar
:
Int
static
val
Widget_AppCompat_SeekBar_Discrete
:
Int
static
val
Widget_AppCompat_Spinner
:
Int
static
val
Widget_AppCompat_Spinner_DropDown
:
Int
static
val
Widget_AppCompat_Spinner_DropDown_ActionBar
:
Int
static
val
Widget_AppCompat_Spinner_Underlined
:
Int
static
val
Widget_AppCompat_TextView_SpinnerItem
:
Int
static
val
Widget_AppCompat_Toolbar
:
Int
static
val
Widget_AppCompat_Toolbar_Button_Navigation
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
static
val
Widget_Design_AppBarLayout
:
Int
static
val
Widget_Design_BottomNavigationView
:
Int
static
val
Widget_Design_BottomSheet_Modal
:
Int
static
val
Widget_Design_CollapsingToolbar
:
Int
static
val
Widget_Design_FloatingActionButton
:
Int
static
val
Widget_Design_NavigationView
:
Int
static
val
Widget_Design_ScrimInsetsFrameLayout
:
Int
static
val
Widget_Design_Snackbar
:
Int
static
val
Widget_Design_TabLayout
:
Int
static
val
Widget_Design_TextInputLayout
:
Int
static
val
Widget_MaterialComponents_BottomAppBar
:
Int
static
val
Widget_MaterialComponents_BottomAppBar_Colored
:
Int
static
val
Widget_MaterialComponents_BottomNavigationView
:
Int
static
val
Widget_MaterialComponents_BottomNavigationView_Colored
:
Int
static
val
Widget_MaterialComponents_BottomSheet_Modal
:
Int
static
val
Widget_MaterialComponents_Button
:
Int
static
val
Widget_MaterialComponents_Button_Icon
:
Int
static
val
Widget_MaterialComponents_Button_OutlinedButton
:
Int
static
val
Widget_MaterialComponents_Button_OutlinedButton_Icon
:
Int
static
val
Widget_MaterialComponents_Button_TextButton
:
Int
static
val
Widget_MaterialComponents_Button_TextButton_Dialog
:
Int
static
val
Widget_MaterialComponents_Button_TextButton_Dialog_Icon
:
Int
static
val
Widget_MaterialComponents_Button_TextButton_Icon
:
Int
static
val
Widget_MaterialComponents_Button_UnelevatedButton
:
Int
static
val
Widget_MaterialComponents_Button_UnelevatedButton_Icon
:
Int
static
val
Widget_MaterialComponents_CardView
:
Int
static
val
Widget_MaterialComponents_ChipGroup
:
Int
static
val
Widget_MaterialComponents_Chip_Action
:
Int
static
val
Widget_MaterialComponents_Chip_Choice
:
Int
static
val
Widget_MaterialComponents_Chip_Entry
:
Int
static
val
Widget_MaterialComponents_Chip_Filter
:
Int
static
val
Widget_MaterialComponents_FloatingActionButton
:
Int
static
val
Widget_MaterialComponents_NavigationView
:
Int
static
val
Widget_MaterialComponents_Snackbar
:
Int
static
val
Widget_MaterialComponents_Snackbar_FullWidth
:
Int
static
val
Widget_MaterialComponents_TabLayout
:
Int
static
val
Widget_MaterialComponents_TabLayout_Colored
:
Int
static
val
Widget_MaterialComponents_TextInputEditText_FilledBox
:
Int
static
val
Widget_MaterialComponents_TextInputEditText_FilledBox_Dense
:
Int
static
val
Widget_MaterialComponents_TextInputEditText_OutlinedBox
:
Int
static
val
Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense
:
Int
static
val
Widget_MaterialComponents_TextInputLayout_FilledBox
:
Int
static
val
Widget_MaterialComponents_TextInputLayout_FilledBox_Dense
:
Int
static
val
Widget_MaterialComponents_TextInputLayout_OutlinedBox
:
Int
static
val
Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense
:
Int
static
val
Widget_MaterialComponents_Toolbar
:
Int
static
val
Widget_Support_CoordinatorLayout
:
Int
class
styleable
Module Contents
static
val
ActionBar
:
IntArray
static
val
ActionBarLayout
:
IntArray
static
val
ActionBarLayout_android_layout_gravity
:
Int
static
val
ActionBar_background
:
Int
static
val
ActionBar_backgroundSplit
:
Int
static
val
ActionBar_backgroundStacked
:
Int
static
val
ActionBar_contentInsetEnd
:
Int
static
val
ActionBar_contentInsetEndWithActions
:
Int
static
val
ActionBar_contentInsetLeft
:
Int
static
val
ActionBar_contentInsetRight
:
Int
static
val
ActionBar_contentInsetStart
:
Int
static
val
ActionBar_contentInsetStartWithNavigation
:
Int
static
val
ActionBar_customNavigationLayout
:
Int
static
val
ActionBar_displayOptions
:
Int
static
val
ActionBar_divider
:
Int
static
val
ActionBar_elevation
:
Int
static
val
ActionBar_height
:
Int
static
val
ActionBar_hideOnContentScroll
:
Int
static
val
ActionBar_homeAsUpIndicator
:
Int
static
val
ActionBar_homeLayout
:
Int
static
val
ActionBar_icon
:
Int
static
val
ActionBar_indeterminateProgressStyle
:
Int
static
val
ActionBar_itemPadding
:
Int
static
val
ActionBar_logo
:
Int
static
val
ActionBar_navigationMode
:
Int
static
val
ActionBar_popupTheme
:
Int
static
val
ActionBar_progressBarPadding
:
Int
static
val
ActionBar_progressBarStyle
:
Int
static
val
ActionBar_subtitle
:
Int
static
val
ActionBar_subtitleTextStyle
:
Int
static
val
ActionBar_title
:
Int
static
val
ActionBar_titleTextStyle
:
Int
static
val
ActionMenuItemView
:
IntArray
static
val
ActionMenuItemView_android_minWidth
:
Int
static
val
ActionMode
:
IntArray
static
val
ActionMode_background
:
Int
static
val
ActionMode_backgroundSplit
:
Int
static
val
ActionMode_closeItemLayout
:
Int
static
val
ActionMode_height
:
Int
static
val
ActionMode_subtitleTextStyle
:
Int
static
val
ActionMode_titleTextStyle
:
Int
static
val
ActivityChooserView
:
IntArray
static
val
ActivityChooserView_expandActivityOverflowButtonDrawable
:
Int
static
val
ActivityChooserView_initialActivityCount
:
Int
static
val
AlertDialog
:
IntArray
static
val
AlertDialog_android_layout
:
Int
static
val
AlertDialog_buttonIconDimen
:
Int
static
val
AlertDialog_buttonPanelSideLayout
:
Int
static
val
AlertDialog_listItemLayout
:
Int
static
val
AlertDialog_listLayout
:
Int
static
val
AlertDialog_multiChoiceItemLayout
:
Int
static
val
AlertDialog_showTitle
:
Int
static
val
AlertDialog_singleChoiceItemLayout
:
Int
static
val
AppBarLayout
:
IntArray
static
val
AppBarLayoutStates
:
IntArray
static
val
AppBarLayoutStates_state_collapsed
:
Int
static
val
AppBarLayoutStates_state_collapsible
:
Int
static
val
AppBarLayoutStates_state_liftable
:
Int
static
val
AppBarLayoutStates_state_lifted
:
Int
static
val
AppBarLayout_Layout
:
IntArray
static
val
AppBarLayout_Layout_layout_scrollFlags
:
Int
static
val
AppBarLayout_Layout_layout_scrollInterpolator
:
Int
static
val
AppBarLayout_android_background
:
Int
static
val
AppBarLayout_android_keyboardNavigationCluster
:
Int
static
val
AppBarLayout_android_touchscreenBlocksFocus
:
Int
static
val
AppBarLayout_elevation
:
Int
static
val
AppBarLayout_expanded
:
Int
static
val
AppBarLayout_liftOnScroll
:
Int
static
val
AppCompatImageView
:
IntArray
static
val
AppCompatImageView_android_src
:
Int
static
val
AppCompatImageView_srcCompat
:
Int
static
val
AppCompatImageView_tint
:
Int
static
val
AppCompatImageView_tintMode
:
Int
static
val
AppCompatSeekBar
:
IntArray
static
val
AppCompatSeekBar_android_thumb
:
Int
static
val
AppCompatSeekBar_tickMark
:
Int
static
val
AppCompatSeekBar_tickMarkTint
:
Int
static
val
AppCompatSeekBar_tickMarkTintMode
:
Int
static
val
AppCompatTextHelper
:
IntArray
static
val
AppCompatTextHelper_android_drawableBottom
:
Int
static
val
AppCompatTextHelper_android_drawableEnd
:
Int
static
val
AppCompatTextHelper_android_drawableLeft
:
Int
static
val
AppCompatTextHelper_android_drawableRight
:
Int
static
val
AppCompatTextHelper_android_drawableStart
:
Int
static
val
AppCompatTextHelper_android_drawableTop
:
Int
static
val
AppCompatTextHelper_android_textAppearance
:
Int
static
val
AppCompatTextView
:
IntArray
static
val
AppCompatTextView_android_textAppearance
:
Int
static
val
AppCompatTextView_autoSizeMaxTextSize
:
Int
static
val
AppCompatTextView_autoSizeMinTextSize
:
Int
static
val
AppCompatTextView_autoSizePresetSizes
:
Int
static
val
AppCompatTextView_autoSizeStepGranularity
:
Int
static
val
AppCompatTextView_autoSizeTextType
:
Int
static
val
AppCompatTextView_firstBaselineToTopHeight
:
Int
static
val
AppCompatTextView_fontFamily
:
Int
static
val
AppCompatTextView_lastBaselineToBottomHeight
:
Int
static
val
AppCompatTextView_lineHeight
:
Int
static
val
AppCompatTextView_textAllCaps
:
Int
static
val
AppCompatTheme
:
IntArray
static
val
AppCompatTheme_actionBarDivider
:
Int
static
val
AppCompatTheme_actionBarItemBackground
:
Int
static
val
AppCompatTheme_actionBarPopupTheme
:
Int
static
val
AppCompatTheme_actionBarSize
:
Int
static
val
AppCompatTheme_actionBarSplitStyle
:
Int
static
val
AppCompatTheme_actionBarStyle
:
Int
static
val
AppCompatTheme_actionBarTabBarStyle
:
Int
static
val
AppCompatTheme_actionBarTabStyle
:
Int
static
val
AppCompatTheme_actionBarTabTextStyle
:
Int
static
val
AppCompatTheme_actionBarTheme
:
Int
static
val
AppCompatTheme_actionBarWidgetTheme
:
Int
static
val
AppCompatTheme_actionButtonStyle
:
Int
static
val
AppCompatTheme_actionDropDownStyle
:
Int
static
val
AppCompatTheme_actionMenuTextAppearance
:
Int
static
val
AppCompatTheme_actionMenuTextColor
:
Int
static
val
AppCompatTheme_actionModeBackground
:
Int
static
val
AppCompatTheme_actionModeCloseButtonStyle
:
Int
static
val
AppCompatTheme_actionModeCloseDrawable
:
Int
static
val
AppCompatTheme_actionModeCopyDrawable
:
Int
static
val
AppCompatTheme_actionModeCutDrawable
:
Int
static
val
AppCompatTheme_actionModeFindDrawable
:
Int
static
val
AppCompatTheme_actionModePasteDrawable
:
Int
static
val
AppCompatTheme_actionModePopupWindowStyle
:
Int
static
val
AppCompatTheme_actionModeSelectAllDrawable
:
Int
static
val
AppCompatTheme_actionModeShareDrawable
:
Int
static
val
AppCompatTheme_actionModeSplitBackground
:
Int
static
val
AppCompatTheme_actionModeStyle
:
Int
static
val
AppCompatTheme_actionModeWebSearchDrawable
:
Int
static
val
AppCompatTheme_actionOverflowButtonStyle
:
Int
static
val
AppCompatTheme_actionOverflowMenuStyle
:
Int
static
val
AppCompatTheme_activityChooserViewStyle
:
Int
static
val
AppCompatTheme_alertDialogButtonGroupStyle
:
Int
static
val
AppCompatTheme_alertDialogCenterButtons
:
Int
static
val
AppCompatTheme_alertDialogStyle
:
Int
static
val
AppCompatTheme_alertDialogTheme
:
Int
static
val
AppCompatTheme_android_windowAnimationStyle
:
Int
static
val
AppCompatTheme_android_windowIsFloating
:
Int
static
val
AppCompatTheme_autoCompleteTextViewStyle
:
Int
static
val
AppCompatTheme_borderlessButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarNegativeButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarNeutralButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarPositiveButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarStyle
:
Int
static
val
AppCompatTheme_buttonStyle
:
Int
static
val
AppCompatTheme_buttonStyleSmall
:
Int
static
val
AppCompatTheme_checkboxStyle
:
Int
static
val
AppCompatTheme_checkedTextViewStyle
:
Int
static
val
AppCompatTheme_colorAccent
:
Int
static
val
AppCompatTheme_colorBackgroundFloating
:
Int
static
val
AppCompatTheme_colorButtonNormal
:
Int
static
val
AppCompatTheme_colorControlActivated
:
Int
static
val
AppCompatTheme_colorControlHighlight
:
Int
static
val
AppCompatTheme_colorControlNormal
:
Int
static
val
AppCompatTheme_colorError
:
Int
static
val
AppCompatTheme_colorPrimary
:
Int
static
val
AppCompatTheme_colorPrimaryDark
:
Int
static
val
AppCompatTheme_colorSwitchThumbNormal
:
Int
static
val
AppCompatTheme_controlBackground
:
Int
static
val
AppCompatTheme_dialogCornerRadius
:
Int
static
val
AppCompatTheme_dialogPreferredPadding
:
Int
static
val
AppCompatTheme_dialogTheme
:
Int
static
val
AppCompatTheme_dividerHorizontal
:
Int
static
val
AppCompatTheme_dividerVertical
:
Int
static
val
AppCompatTheme_dropDownListViewStyle
:
Int
static
val
AppCompatTheme_dropdownListPreferredItemHeight
:
Int
static
val
AppCompatTheme_editTextBackground
:
Int
static
val
AppCompatTheme_editTextColor
:
Int
static
val
AppCompatTheme_editTextStyle
:
Int
static
val
AppCompatTheme_homeAsUpIndicator
:
Int
static
val
AppCompatTheme_imageButtonStyle
:
Int
static
val
AppCompatTheme_listChoiceBackgroundIndicator
:
Int
static
val
AppCompatTheme_listDividerAlertDialog
:
Int
static
val
AppCompatTheme_listMenuViewStyle
:
Int
static
val
AppCompatTheme_listPopupWindowStyle
:
Int
static
val
AppCompatTheme_listPreferredItemHeight
:
Int
static
val
AppCompatTheme_listPreferredItemHeightLarge
:
Int
static
val
AppCompatTheme_listPreferredItemHeightSmall
:
Int
static
val
AppCompatTheme_listPreferredItemPaddingLeft
:
Int
static
val
AppCompatTheme_listPreferredItemPaddingRight
:
Int
static
val
AppCompatTheme_panelBackground
:
Int
static
val
AppCompatTheme_panelMenuListTheme
:
Int
static
val
AppCompatTheme_panelMenuListWidth
:
Int
static
val
AppCompatTheme_popupMenuStyle
:
Int
static
val
AppCompatTheme_popupWindowStyle
:
Int
static
val
AppCompatTheme_radioButtonStyle
:
Int
static
val
AppCompatTheme_ratingBarStyle
:
Int
static
val
AppCompatTheme_ratingBarStyleIndicator
:
Int
static
val
AppCompatTheme_ratingBarStyleSmall
:
Int
static
val
AppCompatTheme_searchViewStyle
:
Int
static
val
AppCompatTheme_seekBarStyle
:
Int
static
val
AppCompatTheme_selectableItemBackground
:
Int
static
val
AppCompatTheme_selectableItemBackgroundBorderless
:
Int
static
val
AppCompatTheme_spinnerDropDownItemStyle
:
Int
static
val
AppCompatTheme_spinnerStyle
:
Int
static
val
AppCompatTheme_switchStyle
:
Int
static
val
AppCompatTheme_textAppearanceLargePopupMenu
:
Int
static
val
AppCompatTheme_textAppearanceListItem
:
Int
static
val
AppCompatTheme_textAppearanceListItemSecondary
:
Int
static
val
AppCompatTheme_textAppearanceListItemSmall
:
Int
static
val
AppCompatTheme_textAppearancePopupMenuHeader
:
Int
static
val
AppCompatTheme_textAppearanceSearchResultSubtitle
:
Int
static
val
AppCompatTheme_textAppearanceSearchResultTitle
:
Int
static
val
AppCompatTheme_textAppearanceSmallPopupMenu
:
Int
static
val
AppCompatTheme_textColorAlertDialogListItem
:
Int
static
val
AppCompatTheme_textColorSearchUrl
:
Int
static
val
AppCompatTheme_toolbarNavigationButtonStyle
:
Int
static
val
AppCompatTheme_toolbarStyle
:
Int
static
val
AppCompatTheme_tooltipForegroundColor
:
Int
static
val
AppCompatTheme_tooltipFrameBackground
:
Int
static
val
AppCompatTheme_viewInflaterClass
:
Int
static
val
AppCompatTheme_windowActionBar
:
Int
static
val
AppCompatTheme_windowActionBarOverlay
:
Int
static
val
AppCompatTheme_windowActionModeOverlay
:
Int
static
val
AppCompatTheme_windowFixedHeightMajor
:
Int
static
val
AppCompatTheme_windowFixedHeightMinor
:
Int
static
val
AppCompatTheme_windowFixedWidthMajor
:
Int
static
val
AppCompatTheme_windowFixedWidthMinor
:
Int
static
val
AppCompatTheme_windowMinWidthMajor
:
Int
static
val
AppCompatTheme_windowMinWidthMinor
:
Int
static
val
AppCompatTheme_windowNoTitle
:
Int
static
val
BottomAppBar
:
IntArray
static
val
BottomAppBar_backgroundTint
:
Int
static
val
BottomAppBar_fabAlignmentMode
:
Int
static
val
BottomAppBar_fabCradleMargin
:
Int
static
val
BottomAppBar_fabCradleRoundedCornerRadius
:
Int
static
val
BottomAppBar_fabCradleVerticalOffset
:
Int
static
val
BottomAppBar_hideOnScroll
:
Int
static
val
BottomNavigationView
:
IntArray
static
val
BottomNavigationView_elevation
:
Int
static
val
BottomNavigationView_itemBackground
:
Int
static
val
BottomNavigationView_itemHorizontalTranslationEnabled
:
Int
static
val
BottomNavigationView_itemIconSize
:
Int
static
val
BottomNavigationView_itemIconTint
:
Int
static
val
BottomNavigationView_itemTextAppearanceActive
:
Int
static
val
BottomNavigationView_itemTextAppearanceInactive
:
Int
static
val
BottomNavigationView_itemTextColor
:
Int
static
val
BottomNavigationView_labelVisibilityMode
:
Int
static
val
BottomNavigationView_menu
:
Int
static
val
BottomSheetBehavior_Layout
:
IntArray
static
val
BottomSheetBehavior_Layout_behavior_fitToContents
:
Int
static
val
BottomSheetBehavior_Layout_behavior_hideable
:
Int
static
val
BottomSheetBehavior_Layout_behavior_peekHeight
:
Int
static
val
BottomSheetBehavior_Layout_behavior_skipCollapsed
:
Int
static
val
ButtonBarLayout
:
IntArray
static
val
ButtonBarLayout_allowStacking
:
Int
static
val
CardView
:
IntArray
static
val
CardView_android_minHeight
:
Int
static
val
CardView_android_minWidth
:
Int
static
val
CardView_cardBackgroundColor
:
Int
static
val
CardView_cardCornerRadius
:
Int
static
val
CardView_cardElevation
:
Int
static
val
CardView_cardMaxElevation
:
Int
static
val
CardView_cardPreventCornerOverlap
:
Int
static
val
CardView_cardUseCompatPadding
:
Int
static
val
CardView_contentPadding
:
Int
static
val
CardView_contentPaddingBottom
:
Int
static
val
CardView_contentPaddingLeft
:
Int
static
val
CardView_contentPaddingRight
:
Int
static
val
CardView_contentPaddingTop
:
Int
static
val
Chip
:
IntArray
static
val
ChipGroup
:
IntArray
static
val
ChipGroup_checkedChip
:
Int
static
val
ChipGroup_chipSpacing
:
Int
static
val
ChipGroup_chipSpacingHorizontal
:
Int
static
val
ChipGroup_chipSpacingVertical
:
Int
static
val
ChipGroup_singleLine
:
Int
static
val
ChipGroup_singleSelection
:
Int
static
val
Chip_android_checkable
:
Int
static
val
Chip_android_ellipsize
:
Int
static
val
Chip_android_maxWidth
:
Int
static
val
Chip_android_text
:
Int
static
val
Chip_android_textAppearance
:
Int
static
val
Chip_checkedIcon
:
Int
static
val
Chip_checkedIconEnabled
:
Int
static
val
Chip_checkedIconVisible
:
Int
static
val
Chip_chipBackgroundColor
:
Int
static
val
Chip_chipCornerRadius
:
Int
static
val
Chip_chipEndPadding
:
Int
static
val
Chip_chipIcon
:
Int
static
val
Chip_chipIconEnabled
:
Int
static
val
Chip_chipIconSize
:
Int
static
val
Chip_chipIconTint
:
Int
static
val
Chip_chipIconVisible
:
Int
static
val
Chip_chipMinHeight
:
Int
static
val
Chip_chipStartPadding
:
Int
static
val
Chip_chipStrokeColor
:
Int
static
val
Chip_chipStrokeWidth
:
Int
static
val
Chip_closeIcon
:
Int
static
val
Chip_closeIconEnabled
:
Int
static
val
Chip_closeIconEndPadding
:
Int
static
val
Chip_closeIconSize
:
Int
static
val
Chip_closeIconStartPadding
:
Int
static
val
Chip_closeIconTint
:
Int
static
val
Chip_closeIconVisible
:
Int
static
val
Chip_hideMotionSpec
:
Int
static
val
Chip_iconEndPadding
:
Int
static
val
Chip_iconStartPadding
:
Int
static
val
Chip_rippleColor
:
Int
static
val
Chip_showMotionSpec
:
Int
static
val
Chip_textEndPadding
:
Int
static
val
Chip_textStartPadding
:
Int
static
val
CollapsingToolbarLayout
:
IntArray
static
val
CollapsingToolbarLayout_Layout
:
IntArray
static
val
CollapsingToolbarLayout_Layout_layout_collapseMode
:
Int
static
val
CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier
:
Int
static
val
CollapsingToolbarLayout_collapsedTitleGravity
:
Int
static
val
CollapsingToolbarLayout_collapsedTitleTextAppearance
:
Int
static
val
CollapsingToolbarLayout_contentScrim
:
Int
static
val
CollapsingToolbarLayout_expandedTitleGravity
:
Int
static
val
CollapsingToolbarLayout_expandedTitleMargin
:
Int
static
val
CollapsingToolbarLayout_expandedTitleMarginBottom
:
Int
static
val
CollapsingToolbarLayout_expandedTitleMarginEnd
:
Int
static
val
CollapsingToolbarLayout_expandedTitleMarginStart
:
Int
static
val
CollapsingToolbarLayout_expandedTitleMarginTop
:
Int
static
val
CollapsingToolbarLayout_expandedTitleTextAppearance
:
Int
static
val
CollapsingToolbarLayout_scrimAnimationDuration
:
Int
static
val
CollapsingToolbarLayout_scrimVisibleHeightTrigger
:
Int
static
val
CollapsingToolbarLayout_statusBarScrim
:
Int
static
val
CollapsingToolbarLayout_title
:
Int
static
val
CollapsingToolbarLayout_titleEnabled
:
Int
static
val
CollapsingToolbarLayout_toolbarId
:
Int
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
CompoundButton
:
IntArray
static
val
CompoundButton_android_button
:
Int
static
val
CompoundButton_buttonTint
:
Int
static
val
CompoundButton_buttonTintMode
:
Int
static
val
CoordinatorLayout
:
IntArray
static
val
CoordinatorLayout_Layout
:
IntArray
static
val
CoordinatorLayout_Layout_android_layout_gravity
:
Int
static
val
CoordinatorLayout_Layout_layout_anchor
:
Int
static
val
CoordinatorLayout_Layout_layout_anchorGravity
:
Int
static
val
CoordinatorLayout_Layout_layout_behavior
:
Int
static
val
CoordinatorLayout_Layout_layout_dodgeInsetEdges
:
Int
static
val
CoordinatorLayout_Layout_layout_insetEdge
:
Int
static
val
CoordinatorLayout_Layout_layout_keyline
:
Int
static
val
CoordinatorLayout_keylines
:
Int
static
val
CoordinatorLayout_statusBarBackground
:
Int
static
val
DesignTheme
:
IntArray
static
val
DesignTheme_bottomSheetDialogTheme
:
Int
static
val
DesignTheme_bottomSheetStyle
:
Int
static
val
DrawerArrowToggle
:
IntArray
static
val
DrawerArrowToggle_arrowHeadLength
:
Int
static
val
DrawerArrowToggle_arrowShaftLength
:
Int
static
val
DrawerArrowToggle_barLength
:
Int
static
val
DrawerArrowToggle_color
:
Int
static
val
DrawerArrowToggle_drawableSize
:
Int
static
val
DrawerArrowToggle_gapBetweenBars
:
Int
static
val
DrawerArrowToggle_spinBars
:
Int
static
val
DrawerArrowToggle_thickness
:
Int
static
val
FloatingActionButton
:
IntArray
static
val
FloatingActionButton_Behavior_Layout
:
IntArray
static
val
FloatingActionButton_Behavior_Layout_behavior_autoHide
:
Int
static
val
FloatingActionButton_backgroundTint
:
Int
static
val
FloatingActionButton_backgroundTintMode
:
Int
static
val
FloatingActionButton_borderWidth
:
Int
static
val
FloatingActionButton_elevation
:
Int
static
val
FloatingActionButton_fabCustomSize
:
Int
static
val
FloatingActionButton_fabSize
:
Int
static
val
FloatingActionButton_hideMotionSpec
:
Int
static
val
FloatingActionButton_hoveredFocusedTranslationZ
:
Int
static
val
FloatingActionButton_maxImageSize
:
Int
static
val
FloatingActionButton_pressedTranslationZ
:
Int
static
val
FloatingActionButton_rippleColor
:
Int
static
val
FloatingActionButton_showMotionSpec
:
Int
static
val
FloatingActionButton_useCompatPadding
:
Int
static
val
FlowLayout
:
IntArray
static
val
FlowLayout_itemSpacing
:
Int
static
val
FlowLayout_lineSpacing
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
ForegroundLinearLayout
:
IntArray
static
val
ForegroundLinearLayout_android_foreground
:
Int
static
val
ForegroundLinearLayout_android_foregroundGravity
:
Int
static
val
ForegroundLinearLayout_foregroundInsidePadding
:
Int
static
val
LinearLayoutCompat
:
IntArray
static
val
LinearLayoutCompat_Layout
:
IntArray
static
val
LinearLayoutCompat_Layout_android_layout_gravity
:
Int
static
val
LinearLayoutCompat_Layout_android_layout_height
:
Int
static
val
LinearLayoutCompat_Layout_android_layout_weight
:
Int
static
val
LinearLayoutCompat_Layout_android_layout_width
:
Int
static
val
LinearLayoutCompat_android_baselineAligned
:
Int
static
val
LinearLayoutCompat_android_baselineAlignedChildIndex
:
Int
static
val
LinearLayoutCompat_android_gravity
:
Int
static
val
LinearLayoutCompat_android_orientation
:
Int
static
val
LinearLayoutCompat_android_weightSum
:
Int
static
val
LinearLayoutCompat_divider
:
Int
static
val
LinearLayoutCompat_dividerPadding
:
Int
static
val
LinearLayoutCompat_measureWithLargestChild
:
Int
static
val
LinearLayoutCompat_showDividers
:
Int
static
val
ListPopupWindow
:
IntArray
static
val
ListPopupWindow_android_dropDownHorizontalOffset
:
Int
static
val
ListPopupWindow_android_dropDownVerticalOffset
:
Int
static
val
MaterialButton
:
IntArray
static
val
MaterialButton_android_insetBottom
:
Int
static
val
MaterialButton_android_insetLeft
:
Int
static
val
MaterialButton_android_insetRight
:
Int
static
val
MaterialButton_android_insetTop
:
Int
static
val
MaterialButton_backgroundTint
:
Int
static
val
MaterialButton_backgroundTintMode
:
Int
static
val
MaterialButton_cornerRadius
:
Int
static
val
MaterialButton_icon
:
Int
static
val
MaterialButton_iconGravity
:
Int
static
val
MaterialButton_iconPadding
:
Int
static
val
MaterialButton_iconSize
:
Int
static
val
MaterialButton_iconTint
:
Int
static
val
MaterialButton_iconTintMode
:
Int
static
val
MaterialButton_rippleColor
:
Int
static
val
MaterialButton_strokeColor
:
Int
static
val
MaterialButton_strokeWidth
:
Int
static
val
MaterialCardView
:
IntArray
static
val
MaterialCardView_strokeColor
:
Int
static
val
MaterialCardView_strokeWidth
:
Int
static
val
MaterialComponentsTheme
:
IntArray
static
val
MaterialComponentsTheme_bottomSheetDialogTheme
:
Int
static
val
MaterialComponentsTheme_bottomSheetStyle
:
Int
static
val
MaterialComponentsTheme_chipGroupStyle
:
Int
static
val
MaterialComponentsTheme_chipStandaloneStyle
:
Int
static
val
MaterialComponentsTheme_chipStyle
:
Int
static
val
MaterialComponentsTheme_colorAccent
:
Int
static
val
MaterialComponentsTheme_colorBackgroundFloating
:
Int
static
val
MaterialComponentsTheme_colorPrimary
:
Int
static
val
MaterialComponentsTheme_colorPrimaryDark
:
Int
static
val
MaterialComponentsTheme_colorSecondary
:
Int
static
val
MaterialComponentsTheme_editTextStyle
:
Int
static
val
MaterialComponentsTheme_floatingActionButtonStyle
:
Int
static
val
MaterialComponentsTheme_materialButtonStyle
:
Int
static
val
MaterialComponentsTheme_materialCardViewStyle
:
Int
static
val
MaterialComponentsTheme_navigationViewStyle
:
Int
static
val
MaterialComponentsTheme_scrimBackground
:
Int
static
val
MaterialComponentsTheme_snackbarButtonStyle
:
Int
static
val
MaterialComponentsTheme_tabStyle
:
Int
static
val
MaterialComponentsTheme_textAppearanceBody1
:
Int
static
val
MaterialComponentsTheme_textAppearanceBody2
:
Int
static
val
MaterialComponentsTheme_textAppearanceButton
:
Int
static
val
MaterialComponentsTheme_textAppearanceCaption
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline1
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline2
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline3
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline4
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline5
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline6
:
Int
static
val
MaterialComponentsTheme_textAppearanceOverline
:
Int
static
val
MaterialComponentsTheme_textAppearanceSubtitle1
:
Int
static
val
MaterialComponentsTheme_textAppearanceSubtitle2
:
Int
static
val
MaterialComponentsTheme_textInputStyle
:
Int
static
val
MenuGroup
:
IntArray
static
val
MenuGroup_android_checkableBehavior
:
Int
static
val
MenuGroup_android_enabled
:
Int
static
val
MenuGroup_android_id
:
Int
static
val
MenuGroup_android_menuCategory
:
Int
static
val
MenuGroup_android_orderInCategory
:
Int
static
val
MenuGroup_android_visible
:
Int
static
val
MenuItem
:
IntArray
static
val
MenuItem_actionLayout
:
Int
static
val
MenuItem_actionProviderClass
:
Int
static
val
MenuItem_actionViewClass
:
Int
static
val
MenuItem_alphabeticModifiers
:
Int
static
val
MenuItem_android_alphabeticShortcut
:
Int
static
val
MenuItem_android_checkable
:
Int
static
val
MenuItem_android_checked
:
Int
static
val
MenuItem_android_enabled
:
Int
static
val
MenuItem_android_icon
:
Int
static
val
MenuItem_android_id
:
Int
static
val
MenuItem_android_menuCategory
:
Int
static
val
MenuItem_android_numericShortcut
:
Int
static
val
MenuItem_android_onClick
:
Int
static
val
MenuItem_android_orderInCategory
:
Int
static
val
MenuItem_android_title
:
Int
static
val
MenuItem_android_titleCondensed
:
Int
static
val
MenuItem_android_visible
:
Int
static
val
MenuItem_contentDescription
:
Int
static
val
MenuItem_iconTint
:
Int
static
val
MenuItem_iconTintMode
:
Int
static
val
MenuItem_numericModifiers
:
Int
static
val
MenuItem_showAsAction
:
Int
static
val
MenuItem_tooltipText
:
Int
static
val
MenuView
:
IntArray
static
val
MenuView_android_headerBackground
:
Int
static
val
MenuView_android_horizontalDivider
:
Int
static
val
MenuView_android_itemBackground
:
Int
static
val
MenuView_android_itemIconDisabledAlpha
:
Int
static
val
MenuView_android_itemTextAppearance
:
Int
static
val
MenuView_android_verticalDivider
:
Int
static
val
MenuView_android_windowAnimationStyle
:
Int
static
val
MenuView_preserveIconSpacing
:
Int
static
val
MenuView_subMenuArrow
:
Int
static
val
NavigationView
:
IntArray
static
val
NavigationView_android_background
:
Int
static
val
NavigationView_android_fitsSystemWindows
:
Int
static
val
NavigationView_android_maxWidth
:
Int
static
val
NavigationView_elevation
:
Int
static
val
NavigationView_headerLayout
:
Int
static
val
NavigationView_itemBackground
:
Int
static
val
NavigationView_itemHorizontalPadding
:
Int
static
val
NavigationView_itemIconPadding
:
Int
static
val
NavigationView_itemIconTint
:
Int
static
val
NavigationView_itemTextAppearance
:
Int
static
val
NavigationView_itemTextColor
:
Int
static
val
NavigationView_menu
:
Int
static
val
PopupWindow
:
IntArray
static
val
PopupWindowBackgroundState
:
IntArray
static
val
PopupWindowBackgroundState_state_above_anchor
:
Int
static
val
PopupWindow_android_popupAnimationStyle
:
Int
static
val
PopupWindow_android_popupBackground
:
Int
static
val
PopupWindow_overlapAnchor
:
Int
static
val
RecycleListView
:
IntArray
static
val
RecycleListView_paddingBottomNoButtons
:
Int
static
val
RecycleListView_paddingTopNoTitle
:
Int
static
val
RecyclerView
:
IntArray
static
val
RecyclerView_android_descendantFocusability
:
Int
static
val
RecyclerView_android_orientation
:
Int
static
val
RecyclerView_fastScrollEnabled
:
Int
static
val
RecyclerView_fastScrollHorizontalThumbDrawable
:
Int
static
val
RecyclerView_fastScrollHorizontalTrackDrawable
:
Int
static
val
RecyclerView_fastScrollVerticalThumbDrawable
:
Int
static
val
RecyclerView_fastScrollVerticalTrackDrawable
:
Int
static
val
RecyclerView_layoutManager
:
Int
static
val
RecyclerView_reverseLayout
:
Int
static
val
RecyclerView_spanCount
:
Int
static
val
RecyclerView_stackFromEnd
:
Int
static
val
ScrimInsetsFrameLayout
:
IntArray
static
val
ScrimInsetsFrameLayout_insetForeground
:
Int
static
val
ScrollingViewBehavior_Layout
:
IntArray
static
val
ScrollingViewBehavior_Layout_behavior_overlapTop
:
Int
static
val
SearchView
:
IntArray
static
val
SearchView_android_focusable
:
Int
static
val
SearchView_android_imeOptions
:
Int
static
val
SearchView_android_inputType
:
Int
static
val
SearchView_android_maxWidth
:
Int
static
val
SearchView_closeIcon
:
Int
static
val
SearchView_commitIcon
:
Int
static
val
SearchView_defaultQueryHint
:
Int
static
val
SearchView_goIcon
:
Int
static
val
SearchView_iconifiedByDefault
:
Int
static
val
SearchView_layout
:
Int
static
val
SearchView_queryBackground
:
Int
static
val
SearchView_queryHint
:
Int
static
val
SearchView_searchHintIcon
:
Int
static
val
SearchView_searchIcon
:
Int
static
val
SearchView_submitBackground
:
Int
static
val
SearchView_suggestionRowLayout
:
Int
static
val
SearchView_voiceIcon
:
Int
static
val
Snackbar
:
IntArray
static
val
SnackbarLayout
:
IntArray
static
val
SnackbarLayout_android_maxWidth
:
Int
static
val
SnackbarLayout_elevation
:
Int
static
val
SnackbarLayout_maxActionInlineWidth
:
Int
static
val
Snackbar_snackbarButtonStyle
:
Int
static
val
Snackbar_snackbarStyle
:
Int
static
val
Spinner
:
IntArray
static
val
Spinner_android_dropDownWidth
:
Int
static
val
Spinner_android_entries
:
Int
static
val
Spinner_android_popupBackground
:
Int
static
val
Spinner_android_prompt
:
Int
static
val
Spinner_popupTheme
:
Int
static
val
SwitchCompat
:
IntArray
static
val
SwitchCompat_android_textOff
:
Int
static
val
SwitchCompat_android_textOn
:
Int
static
val
SwitchCompat_android_thumb
:
Int
static
val
SwitchCompat_showText
:
Int
static
val
SwitchCompat_splitTrack
:
Int
static
val
SwitchCompat_switchMinWidth
:
Int
static
val
SwitchCompat_switchPadding
:
Int
static
val
SwitchCompat_switchTextAppearance
:
Int
static
val
SwitchCompat_thumbTextPadding
:
Int
static
val
SwitchCompat_thumbTint
:
Int
static
val
SwitchCompat_thumbTintMode
:
Int
static
val
SwitchCompat_track
:
Int
static
val
SwitchCompat_trackTint
:
Int
static
val
SwitchCompat_trackTintMode
:
Int
static
val
TabItem
:
IntArray
static
val
TabItem_android_icon
:
Int
static
val
TabItem_android_layout
:
Int
static
val
TabItem_android_text
:
Int
static
val
TabLayout
:
IntArray
static
val
TabLayout_tabBackground
:
Int
static
val
TabLayout_tabContentStart
:
Int
static
val
TabLayout_tabGravity
:
Int
static
val
TabLayout_tabIconTint
:
Int
static
val
TabLayout_tabIconTintMode
:
Int
static
val
TabLayout_tabIndicator
:
Int
static
val
TabLayout_tabIndicatorAnimationDuration
:
Int
static
val
TabLayout_tabIndicatorColor
:
Int
static
val
TabLayout_tabIndicatorFullWidth
:
Int
static
val
TabLayout_tabIndicatorGravity
:
Int
static
val
TabLayout_tabIndicatorHeight
:
Int
static
val
TabLayout_tabInlineLabel
:
Int
static
val
TabLayout_tabMaxWidth
:
Int
static
val
TabLayout_tabMinWidth
:
Int
static
val
TabLayout_tabMode
:
Int
static
val
TabLayout_tabPadding
:
Int
static
val
TabLayout_tabPaddingBottom
:
Int
static
val
TabLayout_tabPaddingEnd
:
Int
static
val
TabLayout_tabPaddingStart
:
Int
static
val
TabLayout_tabPaddingTop
:
Int
static
val
TabLayout_tabRippleColor
:
Int
static
val
TabLayout_tabSelectedTextColor
:
Int
static
val
TabLayout_tabTextAppearance
:
Int
static
val
TabLayout_tabTextColor
:
Int
static
val
TabLayout_tabUnboundedRipple
:
Int
static
val
TextAppearance
:
IntArray
static
val
TextAppearance_android_fontFamily
:
Int
static
val
TextAppearance_android_shadowColor
:
Int
static
val
TextAppearance_android_shadowDx
:
Int
static
val
TextAppearance_android_shadowDy
:
Int
static
val
TextAppearance_android_shadowRadius
:
Int
static
val
TextAppearance_android_textColor
:
Int
static
val
TextAppearance_android_textColorHint
:
Int
static
val
TextAppearance_android_textColorLink
:
Int
static
val
TextAppearance_android_textSize
:
Int
static
val
TextAppearance_android_textStyle
:
Int
static
val
TextAppearance_android_typeface
:
Int
static
val
TextAppearance_fontFamily
:
Int
static
val
TextAppearance_textAllCaps
:
Int
static
val
TextInputLayout
:
IntArray
static
val
TextInputLayout_android_hint
:
Int
static
val
TextInputLayout_android_textColorHint
:
Int
static
val
TextInputLayout_boxBackgroundColor
:
Int
static
val
TextInputLayout_boxBackgroundMode
:
Int
static
val
TextInputLayout_boxCollapsedPaddingTop
:
Int
static
val
TextInputLayout_boxCornerRadiusBottomEnd
:
Int
static
val
TextInputLayout_boxCornerRadiusBottomStart
:
Int
static
val
TextInputLayout_boxCornerRadiusTopEnd
:
Int
static
val
TextInputLayout_boxCornerRadiusTopStart
:
Int
static
val
TextInputLayout_boxStrokeColor
:
Int
static
val
TextInputLayout_boxStrokeWidth
:
Int
static
val
TextInputLayout_counterEnabled
:
Int
static
val
TextInputLayout_counterMaxLength
:
Int
static
val
TextInputLayout_counterOverflowTextAppearance
:
Int
static
val
TextInputLayout_counterTextAppearance
:
Int
static
val
TextInputLayout_errorEnabled
:
Int
static
val
TextInputLayout_errorTextAppearance
:
Int
static
val
TextInputLayout_helperText
:
Int
static
val
TextInputLayout_helperTextEnabled
:
Int
static
val
TextInputLayout_helperTextTextAppearance
:
Int
static
val
TextInputLayout_hintAnimationEnabled
:
Int
static
val
TextInputLayout_hintEnabled
:
Int
static
val
TextInputLayout_hintTextAppearance
:
Int
static
val
TextInputLayout_passwordToggleContentDescription
:
Int
static
val
TextInputLayout_passwordToggleDrawable
:
Int
static
val
TextInputLayout_passwordToggleEnabled
:
Int
static
val
TextInputLayout_passwordToggleTint
:
Int
static
val
TextInputLayout_passwordToggleTintMode
:
Int
static
val
ThemeEnforcement
:
IntArray
static
val
ThemeEnforcement_android_textAppearance
:
Int
static
val
ThemeEnforcement_enforceMaterialTheme
:
Int
static
val
ThemeEnforcement_enforceTextAppearance
:
Int
static
val
Toolbar
:
IntArray
static
val
Toolbar_android_gravity
:
Int
static
val
Toolbar_android_minHeight
:
Int
static
val
Toolbar_buttonGravity
:
Int
static
val
Toolbar_collapseContentDescription
:
Int
static
val
Toolbar_collapseIcon
:
Int
static
val
Toolbar_contentInsetEnd
:
Int
static
val
Toolbar_contentInsetEndWithActions
:
Int
static
val
Toolbar_contentInsetLeft
:
Int
static
val
Toolbar_contentInsetRight
:
Int
static
val
Toolbar_contentInsetStart
:
Int
static
val
Toolbar_contentInsetStartWithNavigation
:
Int
static
val
Toolbar_logo
:
Int
static
val
Toolbar_logoDescription
:
Int
static
val
Toolbar_maxButtonHeight
:
Int
static
val
Toolbar_navigationContentDescription
:
Int
static
val
Toolbar_navigationIcon
:
Int
static
val
Toolbar_popupTheme
:
Int
static
val
Toolbar_subtitle
:
Int
static
val
Toolbar_subtitleTextAppearance
:
Int
static
val
Toolbar_subtitleTextColor
:
Int
static
val
Toolbar_title
:
Int
static
val
Toolbar_titleMargin
:
Int
static
val
Toolbar_titleMarginBottom
:
Int
static
val
Toolbar_titleMarginEnd
:
Int
static
val
Toolbar_titleMarginStart
:
Int
static
val
Toolbar_titleMarginTop
:
Int
static
val
Toolbar_titleMargins
:
Int
static
val
Toolbar_titleTextAppearance
:
Int
static
val
Toolbar_titleTextColor
:
Int
static
val
View
:
IntArray
static
val
ViewBackgroundHelper
:
IntArray
static
val
ViewBackgroundHelper_android_background
:
Int
static
val
ViewBackgroundHelper_backgroundTint
:
Int
static
val
ViewBackgroundHelper_backgroundTintMode
:
Int
static
val
ViewStubCompat
:
IntArray
static
val
ViewStubCompat_android_id
:
Int
static
val
ViewStubCompat_android_inflatedId
:
Int
static
val
ViewStubCompat_android_layout
:
Int
static
val
View_android_focusable
:
Int
static
val
View_android_theme
:
Int
static
val
View_paddingEnd
:
Int
static
val
View_paddingStart
:
Int
static
val
View_theme
:
Int
package
android.support.documentfile
Module Contents
class
R
class
R
package
android.support.drawerlayout
Module Contents
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
package
android.support.exifinterface
Module Contents
class
R
class
R
package
android.support.fragment
Module Contents
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
coordinatorLayoutStyle
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
keylines
:
Int
static
val
layout_anchor
:
Int
static
val
layout_anchorGravity
:
Int
static
val
layout_behavior
:
Int
static
val
layout_dodgeInsetEdges
:
Int
static
val
layout_insetEdge
:
Int
static
val
layout_keyline
:
Int
static
val
statusBarBackground
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
bottom
:
Int
static
val
chronometer
:
Int
static
val
end
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
left
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
none
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
start
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
static
val
top
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
static
val
Widget_Support_CoordinatorLayout
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
CoordinatorLayout
:
IntArray
static
val
CoordinatorLayout_Layout
:
IntArray
static
val
CoordinatorLayout_Layout_android_layout_gravity
:
Int
static
val
CoordinatorLayout_Layout_layout_anchor
:
Int
static
val
CoordinatorLayout_Layout_layout_anchorGravity
:
Int
static
val
CoordinatorLayout_Layout_layout_behavior
:
Int
static
val
CoordinatorLayout_Layout_layout_dodgeInsetEdges
:
Int
static
val
CoordinatorLayout_Layout_layout_insetEdge
:
Int
static
val
CoordinatorLayout_Layout_layout_keyline
:
Int
static
val
CoordinatorLayout_keylines
:
Int
static
val
CoordinatorLayout_statusBarBackground
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
coordinatorLayoutStyle
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
keylines
:
Int
static
val
layout_anchor
:
Int
static
val
layout_anchorGravity
:
Int
static
val
layout_behavior
:
Int
static
val
layout_dodgeInsetEdges
:
Int
static
val
layout_insetEdge
:
Int
static
val
layout_keyline
:
Int
static
val
statusBarBackground
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
bottom
:
Int
static
val
chronometer
:
Int
static
val
end
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
left
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
none
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
start
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
static
val
top
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
static
val
Widget_Support_CoordinatorLayout
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
CoordinatorLayout
:
IntArray
static
val
CoordinatorLayout_Layout
:
IntArray
static
val
CoordinatorLayout_Layout_android_layout_gravity
:
Int
static
val
CoordinatorLayout_Layout_layout_anchor
:
Int
static
val
CoordinatorLayout_Layout_layout_anchorGravity
:
Int
static
val
CoordinatorLayout_Layout_layout_behavior
:
Int
static
val
CoordinatorLayout_Layout_layout_dodgeInsetEdges
:
Int
static
val
CoordinatorLayout_Layout_layout_insetEdge
:
Int
static
val
CoordinatorLayout_Layout_layout_keyline
:
Int
static
val
CoordinatorLayout_keylines
:
Int
static
val
CoordinatorLayout_statusBarBackground
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
package
android.support.graphics.drawable
Module Contents
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
coordinatorLayoutStyle
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
keylines
:
Int
static
val
layout_anchor
:
Int
static
val
layout_anchorGravity
:
Int
static
val
layout_behavior
:
Int
static
val
layout_dodgeInsetEdges
:
Int
static
val
layout_insetEdge
:
Int
static
val
layout_keyline
:
Int
static
val
statusBarBackground
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
bottom
:
Int
static
val
chronometer
:
Int
static
val
end
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
left
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
none
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
start
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
static
val
top
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
static
val
Widget_Support_CoordinatorLayout
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
CoordinatorLayout
:
IntArray
static
val
CoordinatorLayout_Layout
:
IntArray
static
val
CoordinatorLayout_Layout_android_layout_gravity
:
Int
static
val
CoordinatorLayout_Layout_layout_anchor
:
Int
static
val
CoordinatorLayout_Layout_layout_anchorGravity
:
Int
static
val
CoordinatorLayout_Layout_layout_behavior
:
Int
static
val
CoordinatorLayout_Layout_layout_dodgeInsetEdges
:
Int
static
val
CoordinatorLayout_Layout_layout_insetEdge
:
Int
static
val
CoordinatorLayout_Layout_layout_keyline
:
Int
static
val
CoordinatorLayout_keylines
:
Int
static
val
CoordinatorLayout_statusBarBackground
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
coordinatorLayoutStyle
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
keylines
:
Int
static
val
layout_anchor
:
Int
static
val
layout_anchorGravity
:
Int
static
val
layout_behavior
:
Int
static
val
layout_dodgeInsetEdges
:
Int
static
val
layout_insetEdge
:
Int
static
val
layout_keyline
:
Int
static
val
statusBarBackground
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
bottom
:
Int
static
val
chronometer
:
Int
static
val
end
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
left
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
none
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
start
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
static
val
top
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
static
val
Widget_Support_CoordinatorLayout
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
CoordinatorLayout
:
IntArray
static
val
CoordinatorLayout_Layout
:
IntArray
static
val
CoordinatorLayout_Layout_android_layout_gravity
:
Int
static
val
CoordinatorLayout_Layout_layout_anchor
:
Int
static
val
CoordinatorLayout_Layout_layout_anchorGravity
:
Int
static
val
CoordinatorLayout_Layout_layout_behavior
:
Int
static
val
CoordinatorLayout_Layout_layout_dodgeInsetEdges
:
Int
static
val
CoordinatorLayout_Layout_layout_insetEdge
:
Int
static
val
CoordinatorLayout_Layout_layout_keyline
:
Int
static
val
CoordinatorLayout_keylines
:
Int
static
val
CoordinatorLayout_statusBarBackground
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
package
android.support.interpolator
Module Contents
class
R
class
R
package
android.support.loader
Module Contents
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
package
android.support.localbroadcastmanager
Module Contents
class
R
class
R
package
android.support.mediacompat
Module Contents
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
notification_material_background_media_default_color
:
Int
static
val
primary_text_default_material_dark
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_dark
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
static
val
subtitle_corner_radius
:
Int
static
val
subtitle_outline_width
:
Int
static
val
subtitle_shadow_offset
:
Int
static
val
subtitle_shadow_radius
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action0
:
Int
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
cancel_action
:
Int
static
val
chronometer
:
Int
static
val
end_padder
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
media_actions
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
status_bar_latest_event_content
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
cancel_button_image_alpha
:
Int
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_media_action
:
Int
static
val
notification_media_cancel_action
:
Int
static
val
notification_template_big_media
:
Int
static
val
notification_template_big_media_custom
:
Int
static
val
notification_template_big_media_narrow
:
Int
static
val
notification_template_big_media_narrow_custom
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_lines_media
:
Int
static
val
notification_template_media
:
Int
static
val
notification_template_media_custom
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Info_Media
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Line2_Media
:
Int
static
val
TextAppearance_Compat_Notification_Media
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Time_Media
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
TextAppearance_Compat_Notification_Title_Media
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
notification_material_background_media_default_color
:
Int
static
val
primary_text_default_material_dark
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_dark
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
static
val
subtitle_corner_radius
:
Int
static
val
subtitle_outline_width
:
Int
static
val
subtitle_shadow_offset
:
Int
static
val
subtitle_shadow_radius
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action0
:
Int
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
cancel_action
:
Int
static
val
chronometer
:
Int
static
val
end_padder
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
media_actions
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
status_bar_latest_event_content
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
cancel_button_image_alpha
:
Int
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_media_action
:
Int
static
val
notification_media_cancel_action
:
Int
static
val
notification_template_big_media
:
Int
static
val
notification_template_big_media_custom
:
Int
static
val
notification_template_big_media_narrow
:
Int
static
val
notification_template_big_media_narrow_custom
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_lines_media
:
Int
static
val
notification_template_media
:
Int
static
val
notification_template_media_custom
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Info_Media
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Line2_Media
:
Int
static
val
TextAppearance_Compat_Notification_Media
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Time_Media
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
TextAppearance_Compat_Notification_Title_Media
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
package
android.support.print
Module Contents
class
R
class
R
package
android.support.slidingpanelayout
Module Contents
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
package
android.support.swiperefreshlayout
Module Contents
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
package
android.support.transition
Module Contents
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
ghost_view
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
parent_matrix
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
save_image_matrix
:
Int
static
val
save_non_transition_alpha
:
Int
static
val
save_scale_type
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
static
val
transition_current_scene
:
Int
static
val
transition_layout_save
:
Int
static
val
transition_position
:
Int
static
val
transition_scene_layoutid_cache
:
Int
static
val
transition_transform
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
ghost_view
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
parent_matrix
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
save_image_matrix
:
Int
static
val
save_non_transition_alpha
:
Int
static
val
save_scale_type
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
static
val
transition_current_scene
:
Int
static
val
transition_layout_save
:
Int
static
val
transition_position
:
Int
static
val
transition_scene_layoutid_cache
:
Int
static
val
transition_transform
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
package
android.support.v4
Module Contents
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
coordinatorLayoutStyle
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
keylines
:
Int
static
val
layout_anchor
:
Int
static
val
layout_anchorGravity
:
Int
static
val
layout_behavior
:
Int
static
val
layout_dodgeInsetEdges
:
Int
static
val
layout_insetEdge
:
Int
static
val
layout_keyline
:
Int
static
val
statusBarBackground
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
notification_material_background_media_default_color
:
Int
static
val
primary_text_default_material_dark
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_dark
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
static
val
subtitle_corner_radius
:
Int
static
val
subtitle_outline_width
:
Int
static
val
subtitle_shadow_offset
:
Int
static
val
subtitle_shadow_radius
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action0
:
Int
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
bottom
:
Int
static
val
cancel_action
:
Int
static
val
chronometer
:
Int
static
val
end
:
Int
static
val
end_padder
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
left
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
media_actions
:
Int
static
val
none
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
start
:
Int
static
val
status_bar_latest_event_content
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
static
val
top
:
Int
class
integer
Module Contents
static
val
cancel_button_image_alpha
:
Int
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_media_action
:
Int
static
val
notification_media_cancel_action
:
Int
static
val
notification_template_big_media
:
Int
static
val
notification_template_big_media_custom
:
Int
static
val
notification_template_big_media_narrow
:
Int
static
val
notification_template_big_media_narrow_custom
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_lines_media
:
Int
static
val
notification_template_media
:
Int
static
val
notification_template_media_custom
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Info_Media
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Line2_Media
:
Int
static
val
TextAppearance_Compat_Notification_Media
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Time_Media
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
TextAppearance_Compat_Notification_Title_Media
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
static
val
Widget_Support_CoordinatorLayout
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
CoordinatorLayout
:
IntArray
static
val
CoordinatorLayout_Layout
:
IntArray
static
val
CoordinatorLayout_Layout_android_layout_gravity
:
Int
static
val
CoordinatorLayout_Layout_layout_anchor
:
Int
static
val
CoordinatorLayout_Layout_layout_anchorGravity
:
Int
static
val
CoordinatorLayout_Layout_layout_behavior
:
Int
static
val
CoordinatorLayout_Layout_layout_dodgeInsetEdges
:
Int
static
val
CoordinatorLayout_Layout_layout_insetEdge
:
Int
static
val
CoordinatorLayout_Layout_layout_keyline
:
Int
static
val
CoordinatorLayout_keylines
:
Int
static
val
CoordinatorLayout_statusBarBackground
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
coordinatorLayoutStyle
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
keylines
:
Int
static
val
layout_anchor
:
Int
static
val
layout_anchorGravity
:
Int
static
val
layout_behavior
:
Int
static
val
layout_dodgeInsetEdges
:
Int
static
val
layout_insetEdge
:
Int
static
val
layout_keyline
:
Int
static
val
statusBarBackground
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
notification_material_background_media_default_color
:
Int
static
val
primary_text_default_material_dark
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_dark
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
static
val
subtitle_corner_radius
:
Int
static
val
subtitle_outline_width
:
Int
static
val
subtitle_shadow_offset
:
Int
static
val
subtitle_shadow_radius
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action0
:
Int
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
bottom
:
Int
static
val
cancel_action
:
Int
static
val
chronometer
:
Int
static
val
end
:
Int
static
val
end_padder
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
left
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
media_actions
:
Int
static
val
none
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
start
:
Int
static
val
status_bar_latest_event_content
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
static
val
top
:
Int
class
integer
Module Contents
static
val
cancel_button_image_alpha
:
Int
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_media_action
:
Int
static
val
notification_media_cancel_action
:
Int
static
val
notification_template_big_media
:
Int
static
val
notification_template_big_media_custom
:
Int
static
val
notification_template_big_media_narrow
:
Int
static
val
notification_template_big_media_narrow_custom
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_lines_media
:
Int
static
val
notification_template_media
:
Int
static
val
notification_template_media_custom
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Info_Media
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Line2_Media
:
Int
static
val
TextAppearance_Compat_Notification_Media
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Time_Media
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
TextAppearance_Compat_Notification_Title_Media
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
static
val
Widget_Support_CoordinatorLayout
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
CoordinatorLayout
:
IntArray
static
val
CoordinatorLayout_Layout
:
IntArray
static
val
CoordinatorLayout_Layout_android_layout_gravity
:
Int
static
val
CoordinatorLayout_Layout_layout_anchor
:
Int
static
val
CoordinatorLayout_Layout_layout_anchorGravity
:
Int
static
val
CoordinatorLayout_Layout_layout_behavior
:
Int
static
val
CoordinatorLayout_Layout_layout_dodgeInsetEdges
:
Int
static
val
CoordinatorLayout_Layout_layout_insetEdge
:
Int
static
val
CoordinatorLayout_Layout_layout_keyline
:
Int
static
val
CoordinatorLayout_keylines
:
Int
static
val
CoordinatorLayout_statusBarBackground
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
package
android.support.v7.appcompat
Module Contents
class
R
Module Contents
class
anim
Module Contents
static
val
abc_fade_in
:
Int
static
val
abc_fade_out
:
Int
static
val
abc_grow_fade_in_from_bottom
:
Int
static
val
abc_popup_enter
:
Int
static
val
abc_popup_exit
:
Int
static
val
abc_shrink_fade_out_from_bottom
:
Int
static
val
abc_slide_in_bottom
:
Int
static
val
abc_slide_in_top
:
Int
static
val
abc_slide_out_bottom
:
Int
static
val
abc_slide_out_top
:
Int
static
val
abc_tooltip_enter
:
Int
static
val
abc_tooltip_exit
:
Int
class
attr
Module Contents
static
val
actionBarDivider
:
Int
static
val
actionBarItemBackground
:
Int
static
val
actionBarPopupTheme
:
Int
static
val
actionBarSize
:
Int
static
val
actionBarSplitStyle
:
Int
static
val
actionBarStyle
:
Int
static
val
actionBarTabBarStyle
:
Int
static
val
actionBarTabStyle
:
Int
static
val
actionBarTabTextStyle
:
Int
static
val
actionBarTheme
:
Int
static
val
actionBarWidgetTheme
:
Int
static
val
actionButtonStyle
:
Int
static
val
actionDropDownStyle
:
Int
static
val
actionLayout
:
Int
static
val
actionMenuTextAppearance
:
Int
static
val
actionMenuTextColor
:
Int
static
val
actionModeBackground
:
Int
static
val
actionModeCloseButtonStyle
:
Int
static
val
actionModeCloseDrawable
:
Int
static
val
actionModeCopyDrawable
:
Int
static
val
actionModeCutDrawable
:
Int
static
val
actionModeFindDrawable
:
Int
static
val
actionModePasteDrawable
:
Int
static
val
actionModePopupWindowStyle
:
Int
static
val
actionModeSelectAllDrawable
:
Int
static
val
actionModeShareDrawable
:
Int
static
val
actionModeSplitBackground
:
Int
static
val
actionModeStyle
:
Int
static
val
actionModeWebSearchDrawable
:
Int
static
val
actionOverflowButtonStyle
:
Int
static
val
actionOverflowMenuStyle
:
Int
static
val
actionProviderClass
:
Int
static
val
actionViewClass
:
Int
static
val
activityChooserViewStyle
:
Int
static
val
alertDialogButtonGroupStyle
:
Int
static
val
alertDialogCenterButtons
:
Int
static
val
alertDialogStyle
:
Int
static
val
alertDialogTheme
:
Int
static
val
allowStacking
:
Int
static
val
alpha
:
Int
static
val
alphabeticModifiers
:
Int
static
val
arrowHeadLength
:
Int
static
val
arrowShaftLength
:
Int
static
val
autoCompleteTextViewStyle
:
Int
static
val
autoSizeMaxTextSize
:
Int
static
val
autoSizeMinTextSize
:
Int
static
val
autoSizePresetSizes
:
Int
static
val
autoSizeStepGranularity
:
Int
static
val
autoSizeTextType
:
Int
static
val
background
:
Int
static
val
backgroundSplit
:
Int
static
val
backgroundStacked
:
Int
static
val
backgroundTint
:
Int
static
val
backgroundTintMode
:
Int
static
val
barLength
:
Int
static
val
borderlessButtonStyle
:
Int
static
val
buttonBarButtonStyle
:
Int
static
val
buttonBarNegativeButtonStyle
:
Int
static
val
buttonBarNeutralButtonStyle
:
Int
static
val
buttonBarPositiveButtonStyle
:
Int
static
val
buttonBarStyle
:
Int
static
val
buttonGravity
:
Int
static
val
buttonIconDimen
:
Int
static
val
buttonPanelSideLayout
:
Int
static
val
buttonStyle
:
Int
static
val
buttonStyleSmall
:
Int
static
val
buttonTint
:
Int
static
val
buttonTintMode
:
Int
static
val
checkboxStyle
:
Int
static
val
checkedTextViewStyle
:
Int
static
val
closeIcon
:
Int
static
val
closeItemLayout
:
Int
static
val
collapseContentDescription
:
Int
static
val
collapseIcon
:
Int
static
val
color
:
Int
static
val
colorAccent
:
Int
static
val
colorBackgroundFloating
:
Int
static
val
colorButtonNormal
:
Int
static
val
colorControlActivated
:
Int
static
val
colorControlHighlight
:
Int
static
val
colorControlNormal
:
Int
static
val
colorError
:
Int
static
val
colorPrimary
:
Int
static
val
colorPrimaryDark
:
Int
static
val
colorSwitchThumbNormal
:
Int
static
val
commitIcon
:
Int
static
val
contentDescription
:
Int
static
val
contentInsetEnd
:
Int
static
val
contentInsetEndWithActions
:
Int
static
val
contentInsetLeft
:
Int
static
val
contentInsetRight
:
Int
static
val
contentInsetStart
:
Int
static
val
contentInsetStartWithNavigation
:
Int
static
val
controlBackground
:
Int
static
val
coordinatorLayoutStyle
:
Int
static
val
customNavigationLayout
:
Int
static
val
defaultQueryHint
:
Int
static
val
dialogCornerRadius
:
Int
static
val
dialogPreferredPadding
:
Int
static
val
dialogTheme
:
Int
static
val
displayOptions
:
Int
static
val
divider
:
Int
static
val
dividerHorizontal
:
Int
static
val
dividerPadding
:
Int
static
val
dividerVertical
:
Int
static
val
drawableSize
:
Int
static
val
drawerArrowStyle
:
Int
static
val
dropDownListViewStyle
:
Int
static
val
dropdownListPreferredItemHeight
:
Int
static
val
editTextBackground
:
Int
static
val
editTextColor
:
Int
static
val
editTextStyle
:
Int
static
val
elevation
:
Int
static
val
expandActivityOverflowButtonDrawable
:
Int
static
val
firstBaselineToTopHeight
:
Int
static
val
font
:
Int
static
val
fontFamily
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
gapBetweenBars
:
Int
static
val
goIcon
:
Int
static
val
height
:
Int
static
val
hideOnContentScroll
:
Int
static
val
homeAsUpIndicator
:
Int
static
val
homeLayout
:
Int
static
val
icon
:
Int
static
val
iconTint
:
Int
static
val
iconTintMode
:
Int
static
val
iconifiedByDefault
:
Int
static
val
imageButtonStyle
:
Int
static
val
indeterminateProgressStyle
:
Int
static
val
initialActivityCount
:
Int
static
val
isLightTheme
:
Int
static
val
itemPadding
:
Int
static
val
keylines
:
Int
static
val
lastBaselineToBottomHeight
:
Int
static
val
layout
:
Int
static
val
layout_anchor
:
Int
static
val
layout_anchorGravity
:
Int
static
val
layout_behavior
:
Int
static
val
layout_dodgeInsetEdges
:
Int
static
val
layout_insetEdge
:
Int
static
val
layout_keyline
:
Int
static
val
lineHeight
:
Int
static
val
listChoiceBackgroundIndicator
:
Int
static
val
listDividerAlertDialog
:
Int
static
val
listItemLayout
:
Int
static
val
listLayout
:
Int
static
val
listMenuViewStyle
:
Int
static
val
listPopupWindowStyle
:
Int
static
val
listPreferredItemHeight
:
Int
static
val
listPreferredItemHeightLarge
:
Int
static
val
listPreferredItemHeightSmall
:
Int
static
val
listPreferredItemPaddingLeft
:
Int
static
val
listPreferredItemPaddingRight
:
Int
static
val
logo
:
Int
static
val
logoDescription
:
Int
static
val
maxButtonHeight
:
Int
static
val
measureWithLargestChild
:
Int
static
val
multiChoiceItemLayout
:
Int
static
val
navigationContentDescription
:
Int
static
val
navigationIcon
:
Int
static
val
navigationMode
:
Int
static
val
numericModifiers
:
Int
static
val
overlapAnchor
:
Int
static
val
paddingBottomNoButtons
:
Int
static
val
paddingEnd
:
Int
static
val
paddingStart
:
Int
static
val
paddingTopNoTitle
:
Int
static
val
panelBackground
:
Int
static
val
panelMenuListTheme
:
Int
static
val
panelMenuListWidth
:
Int
static
val
popupMenuStyle
:
Int
static
val
popupTheme
:
Int
static
val
popupWindowStyle
:
Int
static
val
preserveIconSpacing
:
Int
static
val
progressBarPadding
:
Int
static
val
progressBarStyle
:
Int
static
val
queryBackground
:
Int
static
val
queryHint
:
Int
static
val
radioButtonStyle
:
Int
static
val
ratingBarStyle
:
Int
static
val
ratingBarStyleIndicator
:
Int
static
val
ratingBarStyleSmall
:
Int
static
val
searchHintIcon
:
Int
static
val
searchIcon
:
Int
static
val
searchViewStyle
:
Int
static
val
seekBarStyle
:
Int
static
val
selectableItemBackground
:
Int
static
val
selectableItemBackgroundBorderless
:
Int
static
val
showAsAction
:
Int
static
val
showDividers
:
Int
static
val
showText
:
Int
static
val
showTitle
:
Int
static
val
singleChoiceItemLayout
:
Int
static
val
spinBars
:
Int
static
val
spinnerDropDownItemStyle
:
Int
static
val
spinnerStyle
:
Int
static
val
splitTrack
:
Int
static
val
srcCompat
:
Int
static
val
state_above_anchor
:
Int
static
val
statusBarBackground
:
Int
static
val
subMenuArrow
:
Int
static
val
submitBackground
:
Int
static
val
subtitle
:
Int
static
val
subtitleTextAppearance
:
Int
static
val
subtitleTextColor
:
Int
static
val
subtitleTextStyle
:
Int
static
val
suggestionRowLayout
:
Int
static
val
switchMinWidth
:
Int
static
val
switchPadding
:
Int
static
val
switchStyle
:
Int
static
val
switchTextAppearance
:
Int
static
val
textAllCaps
:
Int
static
val
textAppearanceLargePopupMenu
:
Int
static
val
textAppearanceListItem
:
Int
static
val
textAppearanceListItemSecondary
:
Int
static
val
textAppearanceListItemSmall
:
Int
static
val
textAppearancePopupMenuHeader
:
Int
static
val
textAppearanceSearchResultSubtitle
:
Int
static
val
textAppearanceSearchResultTitle
:
Int
static
val
textAppearanceSmallPopupMenu
:
Int
static
val
textColorAlertDialogListItem
:
Int
static
val
textColorSearchUrl
:
Int
static
val
theme
:
Int
static
val
thickness
:
Int
static
val
thumbTextPadding
:
Int
static
val
thumbTint
:
Int
static
val
thumbTintMode
:
Int
static
val
tickMark
:
Int
static
val
tickMarkTint
:
Int
static
val
tickMarkTintMode
:
Int
static
val
tint
:
Int
static
val
tintMode
:
Int
static
val
title
:
Int
static
val
titleMargin
:
Int
static
val
titleMarginBottom
:
Int
static
val
titleMarginEnd
:
Int
static
val
titleMarginStart
:
Int
static
val
titleMarginTop
:
Int
static
val
titleMargins
:
Int
static
val
titleTextAppearance
:
Int
static
val
titleTextColor
:
Int
static
val
titleTextStyle
:
Int
static
val
toolbarNavigationButtonStyle
:
Int
static
val
toolbarStyle
:
Int
static
val
tooltipForegroundColor
:
Int
static
val
tooltipFrameBackground
:
Int
static
val
tooltipText
:
Int
static
val
track
:
Int
static
val
trackTint
:
Int
static
val
trackTintMode
:
Int
static
val
ttcIndex
:
Int
static
val
viewInflaterClass
:
Int
static
val
voiceIcon
:
Int
static
val
windowActionBar
:
Int
static
val
windowActionBarOverlay
:
Int
static
val
windowActionModeOverlay
:
Int
static
val
windowFixedHeightMajor
:
Int
static
val
windowFixedHeightMinor
:
Int
static
val
windowFixedWidthMajor
:
Int
static
val
windowFixedWidthMinor
:
Int
static
val
windowMinWidthMajor
:
Int
static
val
windowMinWidthMinor
:
Int
static
val
windowNoTitle
:
Int
class
bool
Module Contents
static
val
abc_action_bar_embed_tabs
:
Int
static
val
abc_allow_stacked_button_bar
:
Int
static
val
abc_config_actionMenuItemAllCaps
:
Int
class
color
Module Contents
static
val
abc_background_cache_hint_selector_material_dark
:
Int
static
val
abc_background_cache_hint_selector_material_light
:
Int
static
val
abc_btn_colored_borderless_text_material
:
Int
static
val
abc_btn_colored_text_material
:
Int
static
val
abc_color_highlight_material
:
Int
static
val
abc_hint_foreground_material_dark
:
Int
static
val
abc_hint_foreground_material_light
:
Int
static
val
abc_input_method_navigation_guard
:
Int
static
val
abc_primary_text_disable_only_material_dark
:
Int
static
val
abc_primary_text_disable_only_material_light
:
Int
static
val
abc_primary_text_material_dark
:
Int
static
val
abc_primary_text_material_light
:
Int
static
val
abc_search_url_text
:
Int
static
val
abc_search_url_text_normal
:
Int
static
val
abc_search_url_text_pressed
:
Int
static
val
abc_search_url_text_selected
:
Int
static
val
abc_secondary_text_material_dark
:
Int
static
val
abc_secondary_text_material_light
:
Int
static
val
abc_tint_btn_checkable
:
Int
static
val
abc_tint_default
:
Int
static
val
abc_tint_edittext
:
Int
static
val
abc_tint_seek_thumb
:
Int
static
val
abc_tint_spinner
:
Int
static
val
abc_tint_switch_track
:
Int
static
val
accent_material_dark
:
Int
static
val
accent_material_light
:
Int
static
val
background_floating_material_dark
:
Int
static
val
background_floating_material_light
:
Int
static
val
background_material_dark
:
Int
static
val
background_material_light
:
Int
static
val
bright_foreground_disabled_material_dark
:
Int
static
val
bright_foreground_disabled_material_light
:
Int
static
val
bright_foreground_inverse_material_dark
:
Int
static
val
bright_foreground_inverse_material_light
:
Int
static
val
bright_foreground_material_dark
:
Int
static
val
bright_foreground_material_light
:
Int
static
val
button_material_dark
:
Int
static
val
button_material_light
:
Int
static
val
dim_foreground_disabled_material_dark
:
Int
static
val
dim_foreground_disabled_material_light
:
Int
static
val
dim_foreground_material_dark
:
Int
static
val
dim_foreground_material_light
:
Int
static
val
error_color_material_dark
:
Int
static
val
error_color_material_light
:
Int
static
val
foreground_material_dark
:
Int
static
val
foreground_material_light
:
Int
static
val
highlighted_text_material_dark
:
Int
static
val
highlighted_text_material_light
:
Int
static
val
material_blue_grey_800
:
Int
static
val
material_blue_grey_900
:
Int
static
val
material_blue_grey_950
:
Int
static
val
material_deep_teal_200
:
Int
static
val
material_deep_teal_500
:
Int
static
val
material_grey_100
:
Int
static
val
material_grey_300
:
Int
static
val
material_grey_50
:
Int
static
val
material_grey_600
:
Int
static
val
material_grey_800
:
Int
static
val
material_grey_850
:
Int
static
val
material_grey_900
:
Int
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
primary_dark_material_dark
:
Int
static
val
primary_dark_material_light
:
Int
static
val
primary_material_dark
:
Int
static
val
primary_material_light
:
Int
static
val
primary_text_default_material_dark
:
Int
static
val
primary_text_default_material_light
:
Int
static
val
primary_text_disabled_material_dark
:
Int
static
val
primary_text_disabled_material_light
:
Int
static
val
ripple_material_dark
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_dark
:
Int
static
val
secondary_text_default_material_light
:
Int
static
val
secondary_text_disabled_material_dark
:
Int
static
val
secondary_text_disabled_material_light
:
Int
static
val
switch_thumb_disabled_material_dark
:
Int
static
val
switch_thumb_disabled_material_light
:
Int
static
val
switch_thumb_material_dark
:
Int
static
val
switch_thumb_material_light
:
Int
static
val
switch_thumb_normal_material_dark
:
Int
static
val
switch_thumb_normal_material_light
:
Int
static
val
tooltip_background_dark
:
Int
static
val
tooltip_background_light
:
Int
class
dimen
Module Contents
static
val
abc_action_bar_content_inset_material
:
Int
static
val
abc_action_bar_content_inset_with_nav
:
Int
static
val
abc_action_bar_default_height_material
:
Int
static
val
abc_action_bar_default_padding_end_material
:
Int
static
val
abc_action_bar_default_padding_start_material
:
Int
static
val
abc_action_bar_elevation_material
:
Int
static
val
abc_action_bar_icon_vertical_padding_material
:
Int
static
val
abc_action_bar_overflow_padding_end_material
:
Int
static
val
abc_action_bar_overflow_padding_start_material
:
Int
static
val
abc_action_bar_stacked_max_height
:
Int
static
val
abc_action_bar_stacked_tab_max_width
:
Int
static
val
abc_action_bar_subtitle_bottom_margin_material
:
Int
static
val
abc_action_bar_subtitle_top_margin_material
:
Int
static
val
abc_action_button_min_height_material
:
Int
static
val
abc_action_button_min_width_material
:
Int
static
val
abc_action_button_min_width_overflow_material
:
Int
static
val
abc_alert_dialog_button_bar_height
:
Int
static
val
abc_alert_dialog_button_dimen
:
Int
static
val
abc_button_inset_horizontal_material
:
Int
static
val
abc_button_inset_vertical_material
:
Int
static
val
abc_button_padding_horizontal_material
:
Int
static
val
abc_button_padding_vertical_material
:
Int
static
val
abc_cascading_menus_min_smallest_width
:
Int
static
val
abc_config_prefDialogWidth
:
Int
static
val
abc_control_corner_material
:
Int
static
val
abc_control_inset_material
:
Int
static
val
abc_control_padding_material
:
Int
static
val
abc_dialog_corner_radius_material
:
Int
static
val
abc_dialog_fixed_height_major
:
Int
static
val
abc_dialog_fixed_height_minor
:
Int
static
val
abc_dialog_fixed_width_major
:
Int
static
val
abc_dialog_fixed_width_minor
:
Int
static
val
abc_dialog_list_padding_bottom_no_buttons
:
Int
static
val
abc_dialog_list_padding_top_no_title
:
Int
static
val
abc_dialog_min_width_major
:
Int
static
val
abc_dialog_min_width_minor
:
Int
static
val
abc_dialog_padding_material
:
Int
static
val
abc_dialog_padding_top_material
:
Int
static
val
abc_dialog_title_divider_material
:
Int
static
val
abc_disabled_alpha_material_dark
:
Int
static
val
abc_disabled_alpha_material_light
:
Int
static
val
abc_dropdownitem_icon_width
:
Int
static
val
abc_dropdownitem_text_padding_left
:
Int
static
val
abc_dropdownitem_text_padding_right
:
Int
static
val
abc_edit_text_inset_bottom_material
:
Int
static
val
abc_edit_text_inset_horizontal_material
:
Int
static
val
abc_edit_text_inset_top_material
:
Int
static
val
abc_floating_window_z
:
Int
static
val
abc_list_item_padding_horizontal_material
:
Int
static
val
abc_panel_menu_list_width
:
Int
static
val
abc_progress_bar_height_material
:
Int
static
val
abc_search_view_preferred_height
:
Int
static
val
abc_search_view_preferred_width
:
Int
static
val
abc_seekbar_track_background_height_material
:
Int
static
val
abc_seekbar_track_progress_height_material
:
Int
static
val
abc_select_dialog_padding_start_material
:
Int
static
val
abc_switch_padding
:
Int
static
val
abc_text_size_body_1_material
:
Int
static
val
abc_text_size_body_2_material
:
Int
static
val
abc_text_size_button_material
:
Int
static
val
abc_text_size_caption_material
:
Int
static
val
abc_text_size_display_1_material
:
Int
static
val
abc_text_size_display_2_material
:
Int
static
val
abc_text_size_display_3_material
:
Int
static
val
abc_text_size_display_4_material
:
Int
static
val
abc_text_size_headline_material
:
Int
static
val
abc_text_size_large_material
:
Int
static
val
abc_text_size_medium_material
:
Int
static
val
abc_text_size_menu_header_material
:
Int
static
val
abc_text_size_menu_material
:
Int
static
val
abc_text_size_small_material
:
Int
static
val
abc_text_size_subhead_material
:
Int
static
val
abc_text_size_subtitle_material_toolbar
:
Int
static
val
abc_text_size_title_material
:
Int
static
val
abc_text_size_title_material_toolbar
:
Int
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
disabled_alpha_material_dark
:
Int
static
val
disabled_alpha_material_light
:
Int
static
val
highlight_alpha_material_colored
:
Int
static
val
highlight_alpha_material_dark
:
Int
static
val
highlight_alpha_material_light
:
Int
static
val
hint_alpha_material_dark
:
Int
static
val
hint_alpha_material_light
:
Int
static
val
hint_pressed_alpha_material_dark
:
Int
static
val
hint_pressed_alpha_material_light
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
static
val
tooltip_corner_radius
:
Int
static
val
tooltip_horizontal_padding
:
Int
static
val
tooltip_margin
:
Int
static
val
tooltip_precise_anchor_extra_offset
:
Int
static
val
tooltip_precise_anchor_threshold
:
Int
static
val
tooltip_vertical_padding
:
Int
static
val
tooltip_y_offset_non_touch
:
Int
static
val
tooltip_y_offset_touch
:
Int
class
drawable
Module Contents
static
val
abc_ab_share_pack_mtrl_alpha
:
Int
static
val
abc_action_bar_item_background_material
:
Int
static
val
abc_btn_borderless_material
:
Int
static
val
abc_btn_check_material
:
Int
static
val
abc_btn_check_to_on_mtrl_000
:
Int
static
val
abc_btn_check_to_on_mtrl_015
:
Int
static
val
abc_btn_colored_material
:
Int
static
val
abc_btn_default_mtrl_shape
:
Int
static
val
abc_btn_radio_material
:
Int
static
val
abc_btn_radio_to_on_mtrl_000
:
Int
static
val
abc_btn_radio_to_on_mtrl_015
:
Int
static
val
abc_btn_switch_to_on_mtrl_00001
:
Int
static
val
abc_btn_switch_to_on_mtrl_00012
:
Int
static
val
abc_cab_background_internal_bg
:
Int
static
val
abc_cab_background_top_material
:
Int
static
val
abc_cab_background_top_mtrl_alpha
:
Int
static
val
abc_control_background_material
:
Int
static
val
abc_dialog_material_background
:
Int
static
val
abc_edit_text_material
:
Int
static
val
abc_ic_ab_back_material
:
Int
static
val
abc_ic_arrow_drop_right_black_24dp
:
Int
static
val
abc_ic_clear_material
:
Int
static
val
abc_ic_commit_search_api_mtrl_alpha
:
Int
static
val
abc_ic_go_search_api_material
:
Int
static
val
abc_ic_menu_copy_mtrl_am_alpha
:
Int
static
val
abc_ic_menu_cut_mtrl_alpha
:
Int
static
val
abc_ic_menu_overflow_material
:
Int
static
val
abc_ic_menu_paste_mtrl_am_alpha
:
Int
static
val
abc_ic_menu_selectall_mtrl_alpha
:
Int
static
val
abc_ic_menu_share_mtrl_alpha
:
Int
static
val
abc_ic_search_api_material
:
Int
static
val
abc_ic_star_black_16dp
:
Int
static
val
abc_ic_star_black_36dp
:
Int
static
val
abc_ic_star_black_48dp
:
Int
static
val
abc_ic_star_half_black_16dp
:
Int
static
val
abc_ic_star_half_black_36dp
:
Int
static
val
abc_ic_star_half_black_48dp
:
Int
static
val
abc_ic_voice_search_api_material
:
Int
static
val
abc_item_background_holo_dark
:
Int
static
val
abc_item_background_holo_light
:
Int
static
val
abc_list_divider_material
:
Int
static
val
abc_list_divider_mtrl_alpha
:
Int
static
val
abc_list_focused_holo
:
Int
static
val
abc_list_longpressed_holo
:
Int
static
val
abc_list_pressed_holo_dark
:
Int
static
val
abc_list_pressed_holo_light
:
Int
static
val
abc_list_selector_background_transition_holo_dark
:
Int
static
val
abc_list_selector_background_transition_holo_light
:
Int
static
val
abc_list_selector_disabled_holo_dark
:
Int
static
val
abc_list_selector_disabled_holo_light
:
Int
static
val
abc_list_selector_holo_dark
:
Int
static
val
abc_list_selector_holo_light
:
Int
static
val
abc_menu_hardkey_panel_mtrl_mult
:
Int
static
val
abc_popup_background_mtrl_mult
:
Int
static
val
abc_ratingbar_indicator_material
:
Int
static
val
abc_ratingbar_material
:
Int
static
val
abc_ratingbar_small_material
:
Int
static
val
abc_scrubber_control_off_mtrl_alpha
:
Int
static
val
abc_scrubber_control_to_pressed_mtrl_000
:
Int
static
val
abc_scrubber_control_to_pressed_mtrl_005
:
Int
static
val
abc_scrubber_primary_mtrl_alpha
:
Int
static
val
abc_scrubber_track_mtrl_alpha
:
Int
static
val
abc_seekbar_thumb_material
:
Int
static
val
abc_seekbar_tick_mark_material
:
Int
static
val
abc_seekbar_track_material
:
Int
static
val
abc_spinner_mtrl_am_alpha
:
Int
static
val
abc_spinner_textfield_background_material
:
Int
static
val
abc_switch_thumb_material
:
Int
static
val
abc_switch_track_mtrl_alpha
:
Int
static
val
abc_tab_indicator_material
:
Int
static
val
abc_tab_indicator_mtrl_alpha
:
Int
static
val
abc_text_cursor_material
:
Int
static
val
abc_text_select_handle_left_mtrl_dark
:
Int
static
val
abc_text_select_handle_left_mtrl_light
:
Int
static
val
abc_text_select_handle_middle_mtrl_dark
:
Int
static
val
abc_text_select_handle_middle_mtrl_light
:
Int
static
val
abc_text_select_handle_right_mtrl_dark
:
Int
static
val
abc_text_select_handle_right_mtrl_light
:
Int
static
val
abc_textfield_activated_mtrl_alpha
:
Int
static
val
abc_textfield_default_mtrl_alpha
:
Int
static
val
abc_textfield_search_activated_mtrl_alpha
:
Int
static
val
abc_textfield_search_default_mtrl_alpha
:
Int
static
val
abc_textfield_search_material
:
Int
static
val
abc_vector_test
:
Int
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
static
val
tooltip_frame_dark
:
Int
static
val
tooltip_frame_light
:
Int
class
id
Module Contents
static
val
action_bar
:
Int
static
val
action_bar_activity_content
:
Int
static
val
action_bar_container
:
Int
static
val
action_bar_root
:
Int
static
val
action_bar_spinner
:
Int
static
val
action_bar_subtitle
:
Int
static
val
action_bar_title
:
Int
static
val
action_container
:
Int
static
val
action_context_bar
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_menu_divider
:
Int
static
val
action_menu_presenter
:
Int
static
val
action_mode_bar
:
Int
static
val
action_mode_bar_stub
:
Int
static
val
action_mode_close_button
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
activity_chooser_view_content
:
Int
static
val
add
:
Int
static
val
alertTitle
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
bottom
:
Int
static
val
buttonPanel
:
Int
static
val
checkbox
:
Int
static
val
chronometer
:
Int
static
val
content
:
Int
static
val
contentPanel
:
Int
static
val
custom
:
Int
static
val
customPanel
:
Int
static
val
decor_content_parent
:
Int
static
val
default_activity_button
:
Int
static
val
edit_query
:
Int
static
val
end
:
Int
static
val
expand_activities_button
:
Int
static
val
expanded_menu
:
Int
static
val
forever
:
Int
static
val
group_divider
:
Int
static
val
home
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
image
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
left
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
listMode
:
Int
static
val
list_item
:
Int
static
val
message
:
Int
static
val
multiply
:
Int
static
val
none
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
parentPanel
:
Int
static
val
progress_circular
:
Int
static
val
progress_horizontal
:
Int
static
val
radio
:
Int
static
val
right
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
screen
:
Int
static
val
scrollIndicatorDown
:
Int
static
val
scrollIndicatorUp
:
Int
static
val
scrollView
:
Int
static
val
search_badge
:
Int
static
val
search_bar
:
Int
static
val
search_button
:
Int
static
val
search_close_btn
:
Int
static
val
search_edit_frame
:
Int
static
val
search_go_btn
:
Int
static
val
search_mag_icon
:
Int
static
val
search_plate
:
Int
static
val
search_src_text
:
Int
static
val
search_voice_btn
:
Int
static
val
select_dialog_listview
:
Int
static
val
shortcut
:
Int
static
val
spacer
:
Int
static
val
split_action_bar
:
Int
static
val
src_atop
:
Int
static
val
src_in
:
Int
static
val
src_over
:
Int
static
val
start
:
Int
static
val
submenuarrow
:
Int
static
val
submit_area
:
Int
static
val
tabMode
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
textSpacerNoButtons
:
Int
static
val
textSpacerNoTitle
:
Int
static
val
time
:
Int
static
val
title
:
Int
static
val
titleDividerNoCustom
:
Int
static
val
title_template
:
Int
static
val
top
:
Int
static
val
topPanel
:
Int
static
val
uniform
:
Int
static
val
up
:
Int
static
val
wrap_content
:
Int
class
integer
Module Contents
static
val
abc_config_activityDefaultDur
:
Int
static
val
abc_config_activityShortDur
:
Int
static
val
cancel_button_image_alpha
:
Int
static
val
config_tooltipAnimTime
:
Int
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
abc_action_bar_title_item
:
Int
static
val
abc_action_bar_up_container
:
Int
static
val
abc_action_menu_item_layout
:
Int
static
val
abc_action_menu_layout
:
Int
static
val
abc_action_mode_bar
:
Int
static
val
abc_action_mode_close_item_material
:
Int
static
val
abc_activity_chooser_view
:
Int
static
val
abc_activity_chooser_view_list_item
:
Int
static
val
abc_alert_dialog_button_bar_material
:
Int
static
val
abc_alert_dialog_material
:
Int
static
val
abc_alert_dialog_title_material
:
Int
static
val
abc_cascading_menu_item_layout
:
Int
static
val
abc_dialog_title_material
:
Int
static
val
abc_expanded_menu_layout
:
Int
static
val
abc_list_menu_item_checkbox
:
Int
static
val
abc_list_menu_item_icon
:
Int
static
val
abc_list_menu_item_layout
:
Int
static
val
abc_list_menu_item_radio
:
Int
static
val
abc_popup_menu_header_item_layout
:
Int
static
val
abc_popup_menu_item_layout
:
Int
static
val
abc_screen_content_include
:
Int
static
val
abc_screen_simple
:
Int
static
val
abc_screen_simple_overlay_action_mode
:
Int
static
val
abc_screen_toolbar
:
Int
static
val
abc_search_dropdown_item_icons_2line
:
Int
static
val
abc_search_view
:
Int
static
val
abc_select_dialog_material
:
Int
static
val
abc_tooltip
:
Int
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
static
val
select_dialog_item_material
:
Int
static
val
select_dialog_multichoice_material
:
Int
static
val
select_dialog_singlechoice_material
:
Int
static
val
support_simple_spinner_dropdown_item
:
Int
class
string
Module Contents
static
val
abc_action_bar_home_description
:
Int
static
val
abc_action_bar_up_description
:
Int
static
val
abc_action_menu_overflow_description
:
Int
static
val
abc_action_mode_done
:
Int
static
val
abc_activity_chooser_view_see_all
:
Int
static
val
abc_activitychooserview_choose_application
:
Int
static
val
abc_capital_off
:
Int
static
val
abc_capital_on
:
Int
static
val
abc_font_family_body_1_material
:
Int
static
val
abc_font_family_body_2_material
:
Int
static
val
abc_font_family_button_material
:
Int
static
val
abc_font_family_caption_material
:
Int
static
val
abc_font_family_display_1_material
:
Int
static
val
abc_font_family_display_2_material
:
Int
static
val
abc_font_family_display_3_material
:
Int
static
val
abc_font_family_display_4_material
:
Int
static
val
abc_font_family_headline_material
:
Int
static
val
abc_font_family_menu_material
:
Int
static
val
abc_font_family_subhead_material
:
Int
static
val
abc_font_family_title_material
:
Int
static
val
abc_menu_alt_shortcut_label
:
Int
static
val
abc_menu_ctrl_shortcut_label
:
Int
static
val
abc_menu_delete_shortcut_label
:
Int
static
val
abc_menu_enter_shortcut_label
:
Int
static
val
abc_menu_function_shortcut_label
:
Int
static
val
abc_menu_meta_shortcut_label
:
Int
static
val
abc_menu_shift_shortcut_label
:
Int
static
val
abc_menu_space_shortcut_label
:
Int
static
val
abc_menu_sym_shortcut_label
:
Int
static
val
abc_prepend_shortcut_label
:
Int
static
val
abc_search_hint
:
Int
static
val
abc_searchview_description_clear
:
Int
static
val
abc_searchview_description_query
:
Int
static
val
abc_searchview_description_search
:
Int
static
val
abc_searchview_description_submit
:
Int
static
val
abc_searchview_description_voice
:
Int
static
val
abc_shareactionprovider_share_with
:
Int
static
val
abc_shareactionprovider_share_with_application
:
Int
static
val
abc_toolbar_collapse_description
:
Int
static
val
search_menu_title
:
Int
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
AlertDialog_AppCompat
:
Int
static
val
AlertDialog_AppCompat_Light
:
Int
static
val
Animation_AppCompat_Dialog
:
Int
static
val
Animation_AppCompat_DropDownUp
:
Int
static
val
Animation_AppCompat_Tooltip
:
Int
static
val
Base_AlertDialog_AppCompat
:
Int
static
val
Base_AlertDialog_AppCompat_Light
:
Int
static
val
Base_Animation_AppCompat_Dialog
:
Int
static
val
Base_Animation_AppCompat_DropDownUp
:
Int
static
val
Base_Animation_AppCompat_Tooltip
:
Int
static
val
Base_DialogWindowTitleBackground_AppCompat
:
Int
static
val
Base_DialogWindowTitle_AppCompat
:
Int
static
val
Base_TextAppearance_AppCompat
:
Int
static
val
Base_TextAppearance_AppCompat_Body1
:
Int
static
val
Base_TextAppearance_AppCompat_Body2
:
Int
static
val
Base_TextAppearance_AppCompat_Button
:
Int
static
val
Base_TextAppearance_AppCompat_Caption
:
Int
static
val
Base_TextAppearance_AppCompat_Display1
:
Int
static
val
Base_TextAppearance_AppCompat_Display2
:
Int
static
val
Base_TextAppearance_AppCompat_Display3
:
Int
static
val
Base_TextAppearance_AppCompat_Display4
:
Int
static
val
Base_TextAppearance_AppCompat_Headline
:
Int
static
val
Base_TextAppearance_AppCompat_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Large
:
Int
static
val
Base_TextAppearance_AppCompat_Large_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
:
Int
static
val
Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
:
Int
static
val
Base_TextAppearance_AppCompat_Medium
:
Int
static
val
Base_TextAppearance_AppCompat_Medium_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Menu
:
Int
static
val
Base_TextAppearance_AppCompat_SearchResult
:
Int
static
val
Base_TextAppearance_AppCompat_SearchResult_Subtitle
:
Int
static
val
Base_TextAppearance_AppCompat_SearchResult_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Small
:
Int
static
val
Base_TextAppearance_AppCompat_Small_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Subhead
:
Int
static
val
Base_TextAppearance_AppCompat_Subhead_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Title_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Tooltip
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Menu
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionMode_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button_Colored
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_DropDownItem
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_PopupMenu_Header
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_PopupMenu_Large
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_PopupMenu_Small
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Switch
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem
:
Int
static
val
Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item
:
Int
static
val
Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle
:
Int
static
val
Base_TextAppearance_Widget_AppCompat_Toolbar_Title
:
Int
static
val
Base_ThemeOverlay_AppCompat
:
Int
static
val
Base_ThemeOverlay_AppCompat_ActionBar
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dark
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dark_ActionBar
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dialog
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dialog_Alert
:
Int
static
val
Base_ThemeOverlay_AppCompat_Light
:
Int
static
val
Base_Theme_AppCompat
:
Int
static
val
Base_Theme_AppCompat_CompactMenu
:
Int
static
val
Base_Theme_AppCompat_Dialog
:
Int
static
val
Base_Theme_AppCompat_DialogWhenLarge
:
Int
static
val
Base_Theme_AppCompat_Dialog_Alert
:
Int
static
val
Base_Theme_AppCompat_Dialog_FixedSize
:
Int
static
val
Base_Theme_AppCompat_Dialog_MinWidth
:
Int
static
val
Base_Theme_AppCompat_Light
:
Int
static
val
Base_Theme_AppCompat_Light_DarkActionBar
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog
:
Int
static
val
Base_Theme_AppCompat_Light_DialogWhenLarge
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog_Alert
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog_FixedSize
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog_MinWidth
:
Int
static
val
Base_V21_ThemeOverlay_AppCompat_Dialog
:
Int
static
val
Base_V21_Theme_AppCompat
:
Int
static
val
Base_V21_Theme_AppCompat_Dialog
:
Int
static
val
Base_V21_Theme_AppCompat_Light
:
Int
static
val
Base_V21_Theme_AppCompat_Light_Dialog
:
Int
static
val
Base_V22_Theme_AppCompat
:
Int
static
val
Base_V22_Theme_AppCompat_Light
:
Int
static
val
Base_V23_Theme_AppCompat
:
Int
static
val
Base_V23_Theme_AppCompat_Light
:
Int
static
val
Base_V26_Theme_AppCompat
:
Int
static
val
Base_V26_Theme_AppCompat_Light
:
Int
static
val
Base_V26_Widget_AppCompat_Toolbar
:
Int
static
val
Base_V28_Theme_AppCompat
:
Int
static
val
Base_V28_Theme_AppCompat_Light
:
Int
static
val
Base_V7_ThemeOverlay_AppCompat_Dialog
:
Int
static
val
Base_V7_Theme_AppCompat
:
Int
static
val
Base_V7_Theme_AppCompat_Dialog
:
Int
static
val
Base_V7_Theme_AppCompat_Light
:
Int
static
val
Base_V7_Theme_AppCompat_Light_Dialog
:
Int
static
val
Base_V7_Widget_AppCompat_AutoCompleteTextView
:
Int
static
val
Base_V7_Widget_AppCompat_EditText
:
Int
static
val
Base_V7_Widget_AppCompat_Toolbar
:
Int
static
val
Base_Widget_AppCompat_ActionBar
:
Int
static
val
Base_Widget_AppCompat_ActionBar_Solid
:
Int
static
val
Base_Widget_AppCompat_ActionBar_TabBar
:
Int
static
val
Base_Widget_AppCompat_ActionBar_TabText
:
Int
static
val
Base_Widget_AppCompat_ActionBar_TabView
:
Int
static
val
Base_Widget_AppCompat_ActionButton
:
Int
static
val
Base_Widget_AppCompat_ActionButton_CloseMode
:
Int
static
val
Base_Widget_AppCompat_ActionButton_Overflow
:
Int
static
val
Base_Widget_AppCompat_ActionMode
:
Int
static
val
Base_Widget_AppCompat_ActivityChooserView
:
Int
static
val
Base_Widget_AppCompat_AutoCompleteTextView
:
Int
static
val
Base_Widget_AppCompat_Button
:
Int
static
val
Base_Widget_AppCompat_ButtonBar
:
Int
static
val
Base_Widget_AppCompat_ButtonBar_AlertDialog
:
Int
static
val
Base_Widget_AppCompat_Button_Borderless
:
Int
static
val
Base_Widget_AppCompat_Button_Borderless_Colored
:
Int
static
val
Base_Widget_AppCompat_Button_ButtonBar_AlertDialog
:
Int
static
val
Base_Widget_AppCompat_Button_Colored
:
Int
static
val
Base_Widget_AppCompat_Button_Small
:
Int
static
val
Base_Widget_AppCompat_CompoundButton_CheckBox
:
Int
static
val
Base_Widget_AppCompat_CompoundButton_RadioButton
:
Int
static
val
Base_Widget_AppCompat_CompoundButton_Switch
:
Int
static
val
Base_Widget_AppCompat_DrawerArrowToggle
:
Int
static
val
Base_Widget_AppCompat_DrawerArrowToggle_Common
:
Int
static
val
Base_Widget_AppCompat_DropDownItem_Spinner
:
Int
static
val
Base_Widget_AppCompat_EditText
:
Int
static
val
Base_Widget_AppCompat_ImageButton
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_Solid
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabBar
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabText
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabView
:
Int
static
val
Base_Widget_AppCompat_Light_PopupMenu
:
Int
static
val
Base_Widget_AppCompat_Light_PopupMenu_Overflow
:
Int
static
val
Base_Widget_AppCompat_ListMenuView
:
Int
static
val
Base_Widget_AppCompat_ListPopupWindow
:
Int
static
val
Base_Widget_AppCompat_ListView
:
Int
static
val
Base_Widget_AppCompat_ListView_DropDown
:
Int
static
val
Base_Widget_AppCompat_ListView_Menu
:
Int
static
val
Base_Widget_AppCompat_PopupMenu
:
Int
static
val
Base_Widget_AppCompat_PopupMenu_Overflow
:
Int
static
val
Base_Widget_AppCompat_PopupWindow
:
Int
static
val
Base_Widget_AppCompat_ProgressBar
:
Int
static
val
Base_Widget_AppCompat_ProgressBar_Horizontal
:
Int
static
val
Base_Widget_AppCompat_RatingBar
:
Int
static
val
Base_Widget_AppCompat_RatingBar_Indicator
:
Int
static
val
Base_Widget_AppCompat_RatingBar_Small
:
Int
static
val
Base_Widget_AppCompat_SearchView
:
Int
static
val
Base_Widget_AppCompat_SearchView_ActionBar
:
Int
static
val
Base_Widget_AppCompat_SeekBar
:
Int
static
val
Base_Widget_AppCompat_SeekBar_Discrete
:
Int
static
val
Base_Widget_AppCompat_Spinner
:
Int
static
val
Base_Widget_AppCompat_Spinner_Underlined
:
Int
static
val
Base_Widget_AppCompat_TextView_SpinnerItem
:
Int
static
val
Base_Widget_AppCompat_Toolbar
:
Int
static
val
Base_Widget_AppCompat_Toolbar_Button_Navigation
:
Int
static
val
Platform_AppCompat
:
Int
static
val
Platform_AppCompat_Light
:
Int
static
val
Platform_ThemeOverlay_AppCompat
:
Int
static
val
Platform_ThemeOverlay_AppCompat_Dark
:
Int
static
val
Platform_ThemeOverlay_AppCompat_Light
:
Int
static
val
Platform_V21_AppCompat
:
Int
static
val
Platform_V21_AppCompat_Light
:
Int
static
val
Platform_V25_AppCompat
:
Int
static
val
Platform_V25_AppCompat_Light
:
Int
static
val
Platform_Widget_AppCompat_Spinner
:
Int
static
val
RtlOverlay_DialogWindowTitle_AppCompat
:
Int
static
val
RtlOverlay_Widget_AppCompat_ActionBar_TitleItem
:
Int
static
val
RtlOverlay_Widget_AppCompat_DialogTitle_Icon
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_Text
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_Title
:
Int
static
val
RtlOverlay_Widget_AppCompat_SearchView_MagIcon
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Query
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Text
:
Int
static
val
RtlUnderlay_Widget_AppCompat_ActionButton
:
Int
static
val
RtlUnderlay_Widget_AppCompat_ActionButton_Overflow
:
Int
static
val
TextAppearance_AppCompat
:
Int
static
val
TextAppearance_AppCompat_Body1
:
Int
static
val
TextAppearance_AppCompat_Body2
:
Int
static
val
TextAppearance_AppCompat_Button
:
Int
static
val
TextAppearance_AppCompat_Caption
:
Int
static
val
TextAppearance_AppCompat_Display1
:
Int
static
val
TextAppearance_AppCompat_Display2
:
Int
static
val
TextAppearance_AppCompat_Display3
:
Int
static
val
TextAppearance_AppCompat_Display4
:
Int
static
val
TextAppearance_AppCompat_Headline
:
Int
static
val
TextAppearance_AppCompat_Inverse
:
Int
static
val
TextAppearance_AppCompat_Large
:
Int
static
val
TextAppearance_AppCompat_Large_Inverse
:
Int
static
val
TextAppearance_AppCompat_Light_SearchResult_Subtitle
:
Int
static
val
TextAppearance_AppCompat_Light_SearchResult_Title
:
Int
static
val
TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
:
Int
static
val
TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
:
Int
static
val
TextAppearance_AppCompat_Medium
:
Int
static
val
TextAppearance_AppCompat_Medium_Inverse
:
Int
static
val
TextAppearance_AppCompat_Menu
:
Int
static
val
TextAppearance_AppCompat_SearchResult_Subtitle
:
Int
static
val
TextAppearance_AppCompat_SearchResult_Title
:
Int
static
val
TextAppearance_AppCompat_Small
:
Int
static
val
TextAppearance_AppCompat_Small_Inverse
:
Int
static
val
TextAppearance_AppCompat_Subhead
:
Int
static
val
TextAppearance_AppCompat_Subhead_Inverse
:
Int
static
val
TextAppearance_AppCompat_Title
:
Int
static
val
TextAppearance_AppCompat_Title_Inverse
:
Int
static
val
TextAppearance_AppCompat_Tooltip
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Menu
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Subtitle
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Title
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Subtitle
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Title
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_Button
:
Int
static
val
TextAppearance_AppCompat_Widget_Button_Borderless_Colored
:
Int
static
val
TextAppearance_AppCompat_Widget_Button_Colored
:
Int
static
val
TextAppearance_AppCompat_Widget_Button_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_DropDownItem
:
Int
static
val
TextAppearance_AppCompat_Widget_PopupMenu_Header
:
Int
static
val
TextAppearance_AppCompat_Widget_PopupMenu_Large
:
Int
static
val
TextAppearance_AppCompat_Widget_PopupMenu_Small
:
Int
static
val
TextAppearance_AppCompat_Widget_Switch
:
Int
static
val
TextAppearance_AppCompat_Widget_TextView_SpinnerItem
:
Int
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
TextAppearance_Widget_AppCompat_ExpandedMenu_Item
:
Int
static
val
TextAppearance_Widget_AppCompat_Toolbar_Subtitle
:
Int
static
val
TextAppearance_Widget_AppCompat_Toolbar_Title
:
Int
static
val
ThemeOverlay_AppCompat
:
Int
static
val
ThemeOverlay_AppCompat_ActionBar
:
Int
static
val
ThemeOverlay_AppCompat_Dark
:
Int
static
val
ThemeOverlay_AppCompat_Dark_ActionBar
:
Int
static
val
ThemeOverlay_AppCompat_Dialog
:
Int
static
val
ThemeOverlay_AppCompat_Dialog_Alert
:
Int
static
val
ThemeOverlay_AppCompat_Light
:
Int
static
val
Theme_AppCompat
:
Int
static
val
Theme_AppCompat_CompactMenu
:
Int
static
val
Theme_AppCompat_DayNight
:
Int
static
val
Theme_AppCompat_DayNight_DarkActionBar
:
Int
static
val
Theme_AppCompat_DayNight_Dialog
:
Int
static
val
Theme_AppCompat_DayNight_DialogWhenLarge
:
Int
static
val
Theme_AppCompat_DayNight_Dialog_Alert
:
Int
static
val
Theme_AppCompat_DayNight_Dialog_MinWidth
:
Int
static
val
Theme_AppCompat_DayNight_NoActionBar
:
Int
static
val
Theme_AppCompat_Dialog
:
Int
static
val
Theme_AppCompat_DialogWhenLarge
:
Int
static
val
Theme_AppCompat_Dialog_Alert
:
Int
static
val
Theme_AppCompat_Dialog_MinWidth
:
Int
static
val
Theme_AppCompat_Light
:
Int
static
val
Theme_AppCompat_Light_DarkActionBar
:
Int
static
val
Theme_AppCompat_Light_Dialog
:
Int
static
val
Theme_AppCompat_Light_DialogWhenLarge
:
Int
static
val
Theme_AppCompat_Light_Dialog_Alert
:
Int
static
val
Theme_AppCompat_Light_Dialog_MinWidth
:
Int
static
val
Theme_AppCompat_Light_NoActionBar
:
Int
static
val
Theme_AppCompat_NoActionBar
:
Int
static
val
Widget_AppCompat_ActionBar
:
Int
static
val
Widget_AppCompat_ActionBar_Solid
:
Int
static
val
Widget_AppCompat_ActionBar_TabBar
:
Int
static
val
Widget_AppCompat_ActionBar_TabText
:
Int
static
val
Widget_AppCompat_ActionBar_TabView
:
Int
static
val
Widget_AppCompat_ActionButton
:
Int
static
val
Widget_AppCompat_ActionButton_CloseMode
:
Int
static
val
Widget_AppCompat_ActionButton_Overflow
:
Int
static
val
Widget_AppCompat_ActionMode
:
Int
static
val
Widget_AppCompat_ActivityChooserView
:
Int
static
val
Widget_AppCompat_AutoCompleteTextView
:
Int
static
val
Widget_AppCompat_Button
:
Int
static
val
Widget_AppCompat_ButtonBar
:
Int
static
val
Widget_AppCompat_ButtonBar_AlertDialog
:
Int
static
val
Widget_AppCompat_Button_Borderless
:
Int
static
val
Widget_AppCompat_Button_Borderless_Colored
:
Int
static
val
Widget_AppCompat_Button_ButtonBar_AlertDialog
:
Int
static
val
Widget_AppCompat_Button_Colored
:
Int
static
val
Widget_AppCompat_Button_Small
:
Int
static
val
Widget_AppCompat_CompoundButton_CheckBox
:
Int
static
val
Widget_AppCompat_CompoundButton_RadioButton
:
Int
static
val
Widget_AppCompat_CompoundButton_Switch
:
Int
static
val
Widget_AppCompat_DrawerArrowToggle
:
Int
static
val
Widget_AppCompat_DropDownItem_Spinner
:
Int
static
val
Widget_AppCompat_EditText
:
Int
static
val
Widget_AppCompat_ImageButton
:
Int
static
val
Widget_AppCompat_Light_ActionBar
:
Int
static
val
Widget_AppCompat_Light_ActionBar_Solid
:
Int
static
val
Widget_AppCompat_Light_ActionBar_Solid_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabBar
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabBar_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabText
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabText_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabView
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabView_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionButton
:
Int
static
val
Widget_AppCompat_Light_ActionButton_CloseMode
:
Int
static
val
Widget_AppCompat_Light_ActionButton_Overflow
:
Int
static
val
Widget_AppCompat_Light_ActionMode_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActivityChooserView
:
Int
static
val
Widget_AppCompat_Light_AutoCompleteTextView
:
Int
static
val
Widget_AppCompat_Light_DropDownItem_Spinner
:
Int
static
val
Widget_AppCompat_Light_ListPopupWindow
:
Int
static
val
Widget_AppCompat_Light_ListView_DropDown
:
Int
static
val
Widget_AppCompat_Light_PopupMenu
:
Int
static
val
Widget_AppCompat_Light_PopupMenu_Overflow
:
Int
static
val
Widget_AppCompat_Light_SearchView
:
Int
static
val
Widget_AppCompat_Light_Spinner_DropDown_ActionBar
:
Int
static
val
Widget_AppCompat_ListMenuView
:
Int
static
val
Widget_AppCompat_ListPopupWindow
:
Int
static
val
Widget_AppCompat_ListView
:
Int
static
val
Widget_AppCompat_ListView_DropDown
:
Int
static
val
Widget_AppCompat_ListView_Menu
:
Int
static
val
Widget_AppCompat_PopupMenu
:
Int
static
val
Widget_AppCompat_PopupMenu_Overflow
:
Int
static
val
Widget_AppCompat_PopupWindow
:
Int
static
val
Widget_AppCompat_ProgressBar
:
Int
static
val
Widget_AppCompat_ProgressBar_Horizontal
:
Int
static
val
Widget_AppCompat_RatingBar
:
Int
static
val
Widget_AppCompat_RatingBar_Indicator
:
Int
static
val
Widget_AppCompat_RatingBar_Small
:
Int
static
val
Widget_AppCompat_SearchView
:
Int
static
val
Widget_AppCompat_SearchView_ActionBar
:
Int
static
val
Widget_AppCompat_SeekBar
:
Int
static
val
Widget_AppCompat_SeekBar_Discrete
:
Int
static
val
Widget_AppCompat_Spinner
:
Int
static
val
Widget_AppCompat_Spinner_DropDown
:
Int
static
val
Widget_AppCompat_Spinner_DropDown_ActionBar
:
Int
static
val
Widget_AppCompat_Spinner_Underlined
:
Int
static
val
Widget_AppCompat_TextView_SpinnerItem
:
Int
static
val
Widget_AppCompat_Toolbar
:
Int
static
val
Widget_AppCompat_Toolbar_Button_Navigation
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
static
val
Widget_Support_CoordinatorLayout
:
Int
class
styleable
Module Contents
static
val
ActionBar
:
IntArray
static
val
ActionBarLayout
:
IntArray
static
val
ActionBarLayout_android_layout_gravity
:
Int
static
val
ActionBar_background
:
Int
static
val
ActionBar_backgroundSplit
:
Int
static
val
ActionBar_backgroundStacked
:
Int
static
val
ActionBar_contentInsetEnd
:
Int
static
val
ActionBar_contentInsetEndWithActions
:
Int
static
val
ActionBar_contentInsetLeft
:
Int
static
val
ActionBar_contentInsetRight
:
Int
static
val
ActionBar_contentInsetStart
:
Int
static
val
ActionBar_contentInsetStartWithNavigation
:
Int
static
val
ActionBar_customNavigationLayout
:
Int
static
val
ActionBar_displayOptions
:
Int
static
val
ActionBar_divider
:
Int
static
val
ActionBar_elevation
:
Int
static
val
ActionBar_height
:
Int
static
val
ActionBar_hideOnContentScroll
:
Int
static
val
ActionBar_homeAsUpIndicator
:
Int
static
val
ActionBar_homeLayout
:
Int
static
val
ActionBar_icon
:
Int
static
val
ActionBar_indeterminateProgressStyle
:
Int
static
val
ActionBar_itemPadding
:
Int
static
val
ActionBar_logo
:
Int
static
val
ActionBar_navigationMode
:
Int
static
val
ActionBar_popupTheme
:
Int
static
val
ActionBar_progressBarPadding
:
Int
static
val
ActionBar_progressBarStyle
:
Int
static
val
ActionBar_subtitle
:
Int
static
val
ActionBar_subtitleTextStyle
:
Int
static
val
ActionBar_title
:
Int
static
val
ActionBar_titleTextStyle
:
Int
static
val
ActionMenuItemView
:
IntArray
static
val
ActionMenuItemView_android_minWidth
:
Int
static
val
ActionMenuView
:
IntArray
static
val
ActionMode
:
IntArray
static
val
ActionMode_background
:
Int
static
val
ActionMode_backgroundSplit
:
Int
static
val
ActionMode_closeItemLayout
:
Int
static
val
ActionMode_height
:
Int
static
val
ActionMode_subtitleTextStyle
:
Int
static
val
ActionMode_titleTextStyle
:
Int
static
val
ActivityChooserView
:
IntArray
static
val
ActivityChooserView_expandActivityOverflowButtonDrawable
:
Int
static
val
ActivityChooserView_initialActivityCount
:
Int
static
val
AlertDialog
:
IntArray
static
val
AlertDialog_android_layout
:
Int
static
val
AlertDialog_buttonIconDimen
:
Int
static
val
AlertDialog_buttonPanelSideLayout
:
Int
static
val
AlertDialog_listItemLayout
:
Int
static
val
AlertDialog_listLayout
:
Int
static
val
AlertDialog_multiChoiceItemLayout
:
Int
static
val
AlertDialog_showTitle
:
Int
static
val
AlertDialog_singleChoiceItemLayout
:
Int
static
val
AnimatedStateListDrawableCompat
:
IntArray
static
val
AnimatedStateListDrawableCompat_android_constantSize
:
Int
static
val
AnimatedStateListDrawableCompat_android_dither
:
Int
static
val
AnimatedStateListDrawableCompat_android_enterFadeDuration
:
Int
static
val
AnimatedStateListDrawableCompat_android_exitFadeDuration
:
Int
static
val
AnimatedStateListDrawableCompat_android_variablePadding
:
Int
static
val
AnimatedStateListDrawableCompat_android_visible
:
Int
static
val
AnimatedStateListDrawableItem
:
IntArray
static
val
AnimatedStateListDrawableItem_android_drawable
:
Int
static
val
AnimatedStateListDrawableItem_android_id
:
Int
static
val
AnimatedStateListDrawableTransition
:
IntArray
static
val
AnimatedStateListDrawableTransition_android_drawable
:
Int
static
val
AnimatedStateListDrawableTransition_android_fromId
:
Int
static
val
AnimatedStateListDrawableTransition_android_reversible
:
Int
static
val
AnimatedStateListDrawableTransition_android_toId
:
Int
static
val
AppCompatImageView
:
IntArray
static
val
AppCompatImageView_android_src
:
Int
static
val
AppCompatImageView_srcCompat
:
Int
static
val
AppCompatImageView_tint
:
Int
static
val
AppCompatImageView_tintMode
:
Int
static
val
AppCompatSeekBar
:
IntArray
static
val
AppCompatSeekBar_android_thumb
:
Int
static
val
AppCompatSeekBar_tickMark
:
Int
static
val
AppCompatSeekBar_tickMarkTint
:
Int
static
val
AppCompatSeekBar_tickMarkTintMode
:
Int
static
val
AppCompatTextHelper
:
IntArray
static
val
AppCompatTextHelper_android_drawableBottom
:
Int
static
val
AppCompatTextHelper_android_drawableEnd
:
Int
static
val
AppCompatTextHelper_android_drawableLeft
:
Int
static
val
AppCompatTextHelper_android_drawableRight
:
Int
static
val
AppCompatTextHelper_android_drawableStart
:
Int
static
val
AppCompatTextHelper_android_drawableTop
:
Int
static
val
AppCompatTextHelper_android_textAppearance
:
Int
static
val
AppCompatTextView
:
IntArray
static
val
AppCompatTextView_android_textAppearance
:
Int
static
val
AppCompatTextView_autoSizeMaxTextSize
:
Int
static
val
AppCompatTextView_autoSizeMinTextSize
:
Int
static
val
AppCompatTextView_autoSizePresetSizes
:
Int
static
val
AppCompatTextView_autoSizeStepGranularity
:
Int
static
val
AppCompatTextView_autoSizeTextType
:
Int
static
val
AppCompatTextView_firstBaselineToTopHeight
:
Int
static
val
AppCompatTextView_fontFamily
:
Int
static
val
AppCompatTextView_lastBaselineToBottomHeight
:
Int
static
val
AppCompatTextView_lineHeight
:
Int
static
val
AppCompatTextView_textAllCaps
:
Int
static
val
AppCompatTheme
:
IntArray
static
val
AppCompatTheme_actionBarDivider
:
Int
static
val
AppCompatTheme_actionBarItemBackground
:
Int
static
val
AppCompatTheme_actionBarPopupTheme
:
Int
static
val
AppCompatTheme_actionBarSize
:
Int
static
val
AppCompatTheme_actionBarSplitStyle
:
Int
static
val
AppCompatTheme_actionBarStyle
:
Int
static
val
AppCompatTheme_actionBarTabBarStyle
:
Int
static
val
AppCompatTheme_actionBarTabStyle
:
Int
static
val
AppCompatTheme_actionBarTabTextStyle
:
Int
static
val
AppCompatTheme_actionBarTheme
:
Int
static
val
AppCompatTheme_actionBarWidgetTheme
:
Int
static
val
AppCompatTheme_actionButtonStyle
:
Int
static
val
AppCompatTheme_actionDropDownStyle
:
Int
static
val
AppCompatTheme_actionMenuTextAppearance
:
Int
static
val
AppCompatTheme_actionMenuTextColor
:
Int
static
val
AppCompatTheme_actionModeBackground
:
Int
static
val
AppCompatTheme_actionModeCloseButtonStyle
:
Int
static
val
AppCompatTheme_actionModeCloseDrawable
:
Int
static
val
AppCompatTheme_actionModeCopyDrawable
:
Int
static
val
AppCompatTheme_actionModeCutDrawable
:
Int
static
val
AppCompatTheme_actionModeFindDrawable
:
Int
static
val
AppCompatTheme_actionModePasteDrawable
:
Int
static
val
AppCompatTheme_actionModePopupWindowStyle
:
Int
static
val
AppCompatTheme_actionModeSelectAllDrawable
:
Int
static
val
AppCompatTheme_actionModeShareDrawable
:
Int
static
val
AppCompatTheme_actionModeSplitBackground
:
Int
static
val
AppCompatTheme_actionModeStyle
:
Int
static
val
AppCompatTheme_actionModeWebSearchDrawable
:
Int
static
val
AppCompatTheme_actionOverflowButtonStyle
:
Int
static
val
AppCompatTheme_actionOverflowMenuStyle
:
Int
static
val
AppCompatTheme_activityChooserViewStyle
:
Int
static
val
AppCompatTheme_alertDialogButtonGroupStyle
:
Int
static
val
AppCompatTheme_alertDialogCenterButtons
:
Int
static
val
AppCompatTheme_alertDialogStyle
:
Int
static
val
AppCompatTheme_alertDialogTheme
:
Int
static
val
AppCompatTheme_android_windowAnimationStyle
:
Int
static
val
AppCompatTheme_android_windowIsFloating
:
Int
static
val
AppCompatTheme_autoCompleteTextViewStyle
:
Int
static
val
AppCompatTheme_borderlessButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarNegativeButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarNeutralButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarPositiveButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarStyle
:
Int
static
val
AppCompatTheme_buttonStyle
:
Int
static
val
AppCompatTheme_buttonStyleSmall
:
Int
static
val
AppCompatTheme_checkboxStyle
:
Int
static
val
AppCompatTheme_checkedTextViewStyle
:
Int
static
val
AppCompatTheme_colorAccent
:
Int
static
val
AppCompatTheme_colorBackgroundFloating
:
Int
static
val
AppCompatTheme_colorButtonNormal
:
Int
static
val
AppCompatTheme_colorControlActivated
:
Int
static
val
AppCompatTheme_colorControlHighlight
:
Int
static
val
AppCompatTheme_colorControlNormal
:
Int
static
val
AppCompatTheme_colorError
:
Int
static
val
AppCompatTheme_colorPrimary
:
Int
static
val
AppCompatTheme_colorPrimaryDark
:
Int
static
val
AppCompatTheme_colorSwitchThumbNormal
:
Int
static
val
AppCompatTheme_controlBackground
:
Int
static
val
AppCompatTheme_dialogCornerRadius
:
Int
static
val
AppCompatTheme_dialogPreferredPadding
:
Int
static
val
AppCompatTheme_dialogTheme
:
Int
static
val
AppCompatTheme_dividerHorizontal
:
Int
static
val
AppCompatTheme_dividerVertical
:
Int
static
val
AppCompatTheme_dropDownListViewStyle
:
Int
static
val
AppCompatTheme_dropdownListPreferredItemHeight
:
Int
static
val
AppCompatTheme_editTextBackground
:
Int
static
val
AppCompatTheme_editTextColor
:
Int
static
val
AppCompatTheme_editTextStyle
:
Int
static
val
AppCompatTheme_homeAsUpIndicator
:
Int
static
val
AppCompatTheme_imageButtonStyle
:
Int
static
val
AppCompatTheme_listChoiceBackgroundIndicator
:
Int
static
val
AppCompatTheme_listDividerAlertDialog
:
Int
static
val
AppCompatTheme_listMenuViewStyle
:
Int
static
val
AppCompatTheme_listPopupWindowStyle
:
Int
static
val
AppCompatTheme_listPreferredItemHeight
:
Int
static
val
AppCompatTheme_listPreferredItemHeightLarge
:
Int
static
val
AppCompatTheme_listPreferredItemHeightSmall
:
Int
static
val
AppCompatTheme_listPreferredItemPaddingLeft
:
Int
static
val
AppCompatTheme_listPreferredItemPaddingRight
:
Int
static
val
AppCompatTheme_panelBackground
:
Int
static
val
AppCompatTheme_panelMenuListTheme
:
Int
static
val
AppCompatTheme_panelMenuListWidth
:
Int
static
val
AppCompatTheme_popupMenuStyle
:
Int
static
val
AppCompatTheme_popupWindowStyle
:
Int
static
val
AppCompatTheme_radioButtonStyle
:
Int
static
val
AppCompatTheme_ratingBarStyle
:
Int
static
val
AppCompatTheme_ratingBarStyleIndicator
:
Int
static
val
AppCompatTheme_ratingBarStyleSmall
:
Int
static
val
AppCompatTheme_searchViewStyle
:
Int
static
val
AppCompatTheme_seekBarStyle
:
Int
static
val
AppCompatTheme_selectableItemBackground
:
Int
static
val
AppCompatTheme_selectableItemBackgroundBorderless
:
Int
static
val
AppCompatTheme_spinnerDropDownItemStyle
:
Int
static
val
AppCompatTheme_spinnerStyle
:
Int
static
val
AppCompatTheme_switchStyle
:
Int
static
val
AppCompatTheme_textAppearanceLargePopupMenu
:
Int
static
val
AppCompatTheme_textAppearanceListItem
:
Int
static
val
AppCompatTheme_textAppearanceListItemSecondary
:
Int
static
val
AppCompatTheme_textAppearanceListItemSmall
:
Int
static
val
AppCompatTheme_textAppearancePopupMenuHeader
:
Int
static
val
AppCompatTheme_textAppearanceSearchResultSubtitle
:
Int
static
val
AppCompatTheme_textAppearanceSearchResultTitle
:
Int
static
val
AppCompatTheme_textAppearanceSmallPopupMenu
:
Int
static
val
AppCompatTheme_textColorAlertDialogListItem
:
Int
static
val
AppCompatTheme_textColorSearchUrl
:
Int
static
val
AppCompatTheme_toolbarNavigationButtonStyle
:
Int
static
val
AppCompatTheme_toolbarStyle
:
Int
static
val
AppCompatTheme_tooltipForegroundColor
:
Int
static
val
AppCompatTheme_tooltipFrameBackground
:
Int
static
val
AppCompatTheme_viewInflaterClass
:
Int
static
val
AppCompatTheme_windowActionBar
:
Int
static
val
AppCompatTheme_windowActionBarOverlay
:
Int
static
val
AppCompatTheme_windowActionModeOverlay
:
Int
static
val
AppCompatTheme_windowFixedHeightMajor
:
Int
static
val
AppCompatTheme_windowFixedHeightMinor
:
Int
static
val
AppCompatTheme_windowFixedWidthMajor
:
Int
static
val
AppCompatTheme_windowFixedWidthMinor
:
Int
static
val
AppCompatTheme_windowMinWidthMajor
:
Int
static
val
AppCompatTheme_windowMinWidthMinor
:
Int
static
val
AppCompatTheme_windowNoTitle
:
Int
static
val
ButtonBarLayout
:
IntArray
static
val
ButtonBarLayout_allowStacking
:
Int
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
CompoundButton
:
IntArray
static
val
CompoundButton_android_button
:
Int
static
val
CompoundButton_buttonTint
:
Int
static
val
CompoundButton_buttonTintMode
:
Int
static
val
CoordinatorLayout
:
IntArray
static
val
CoordinatorLayout_Layout
:
IntArray
static
val
CoordinatorLayout_Layout_android_layout_gravity
:
Int
static
val
CoordinatorLayout_Layout_layout_anchor
:
Int
static
val
CoordinatorLayout_Layout_layout_anchorGravity
:
Int
static
val
CoordinatorLayout_Layout_layout_behavior
:
Int
static
val
CoordinatorLayout_Layout_layout_dodgeInsetEdges
:
Int
static
val
CoordinatorLayout_Layout_layout_insetEdge
:
Int
static
val
CoordinatorLayout_Layout_layout_keyline
:
Int
static
val
CoordinatorLayout_keylines
:
Int
static
val
CoordinatorLayout_statusBarBackground
:
Int
static
val
DrawerArrowToggle
:
IntArray
static
val
DrawerArrowToggle_arrowHeadLength
:
Int
static
val
DrawerArrowToggle_arrowShaftLength
:
Int
static
val
DrawerArrowToggle_barLength
:
Int
static
val
DrawerArrowToggle_color
:
Int
static
val
DrawerArrowToggle_drawableSize
:
Int
static
val
DrawerArrowToggle_gapBetweenBars
:
Int
static
val
DrawerArrowToggle_spinBars
:
Int
static
val
DrawerArrowToggle_thickness
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
static
val
LinearLayoutCompat
:
IntArray
static
val
LinearLayoutCompat_Layout
:
IntArray
static
val
LinearLayoutCompat_Layout_android_layout_gravity
:
Int
static
val
LinearLayoutCompat_Layout_android_layout_height
:
Int
static
val
LinearLayoutCompat_Layout_android_layout_weight
:
Int
static
val
LinearLayoutCompat_Layout_android_layout_width
:
Int
static
val
LinearLayoutCompat_android_baselineAligned
:
Int
static
val
LinearLayoutCompat_android_baselineAlignedChildIndex
:
Int
static
val
LinearLayoutCompat_android_gravity
:
Int
static
val
LinearLayoutCompat_android_orientation
:
Int
static
val
LinearLayoutCompat_android_weightSum
:
Int
static
val
LinearLayoutCompat_divider
:
Int
static
val
LinearLayoutCompat_dividerPadding
:
Int
static
val
LinearLayoutCompat_measureWithLargestChild
:
Int
static
val
LinearLayoutCompat_showDividers
:
Int
static
val
ListPopupWindow
:
IntArray
static
val
ListPopupWindow_android_dropDownHorizontalOffset
:
Int
static
val
ListPopupWindow_android_dropDownVerticalOffset
:
Int
static
val
MenuGroup
:
IntArray
static
val
MenuGroup_android_checkableBehavior
:
Int
static
val
MenuGroup_android_enabled
:
Int
static
val
MenuGroup_android_id
:
Int
static
val
MenuGroup_android_menuCategory
:
Int
static
val
MenuGroup_android_orderInCategory
:
Int
static
val
MenuGroup_android_visible
:
Int
static
val
MenuItem
:
IntArray
static
val
MenuItem_actionLayout
:
Int
static
val
MenuItem_actionProviderClass
:
Int
static
val
MenuItem_actionViewClass
:
Int
static
val
MenuItem_alphabeticModifiers
:
Int
static
val
MenuItem_android_alphabeticShortcut
:
Int
static
val
MenuItem_android_checkable
:
Int
static
val
MenuItem_android_checked
:
Int
static
val
MenuItem_android_enabled
:
Int
static
val
MenuItem_android_icon
:
Int
static
val
MenuItem_android_id
:
Int
static
val
MenuItem_android_menuCategory
:
Int
static
val
MenuItem_android_numericShortcut
:
Int
static
val
MenuItem_android_onClick
:
Int
static
val
MenuItem_android_orderInCategory
:
Int
static
val
MenuItem_android_title
:
Int
static
val
MenuItem_android_titleCondensed
:
Int
static
val
MenuItem_android_visible
:
Int
static
val
MenuItem_contentDescription
:
Int
static
val
MenuItem_iconTint
:
Int
static
val
MenuItem_iconTintMode
:
Int
static
val
MenuItem_numericModifiers
:
Int
static
val
MenuItem_showAsAction
:
Int
static
val
MenuItem_tooltipText
:
Int
static
val
MenuView
:
IntArray
static
val
MenuView_android_headerBackground
:
Int
static
val
MenuView_android_horizontalDivider
:
Int
static
val
MenuView_android_itemBackground
:
Int
static
val
MenuView_android_itemIconDisabledAlpha
:
Int
static
val
MenuView_android_itemTextAppearance
:
Int
static
val
MenuView_android_verticalDivider
:
Int
static
val
MenuView_android_windowAnimationStyle
:
Int
static
val
MenuView_preserveIconSpacing
:
Int
static
val
MenuView_subMenuArrow
:
Int
static
val
PopupWindow
:
IntArray
static
val
PopupWindowBackgroundState
:
IntArray
static
val
PopupWindowBackgroundState_state_above_anchor
:
Int
static
val
PopupWindow_android_popupAnimationStyle
:
Int
static
val
PopupWindow_android_popupBackground
:
Int
static
val
PopupWindow_overlapAnchor
:
Int
static
val
RecycleListView
:
IntArray
static
val
RecycleListView_paddingBottomNoButtons
:
Int
static
val
RecycleListView_paddingTopNoTitle
:
Int
static
val
SearchView
:
IntArray
static
val
SearchView_android_focusable
:
Int
static
val
SearchView_android_imeOptions
:
Int
static
val
SearchView_android_inputType
:
Int
static
val
SearchView_android_maxWidth
:
Int
static
val
SearchView_closeIcon
:
Int
static
val
SearchView_commitIcon
:
Int
static
val
SearchView_defaultQueryHint
:
Int
static
val
SearchView_goIcon
:
Int
static
val
SearchView_iconifiedByDefault
:
Int
static
val
SearchView_layout
:
Int
static
val
SearchView_queryBackground
:
Int
static
val
SearchView_queryHint
:
Int
static
val
SearchView_searchHintIcon
:
Int
static
val
SearchView_searchIcon
:
Int
static
val
SearchView_submitBackground
:
Int
static
val
SearchView_suggestionRowLayout
:
Int
static
val
SearchView_voiceIcon
:
Int
static
val
Spinner
:
IntArray
static
val
Spinner_android_dropDownWidth
:
Int
static
val
Spinner_android_entries
:
Int
static
val
Spinner_android_popupBackground
:
Int
static
val
Spinner_android_prompt
:
Int
static
val
Spinner_popupTheme
:
Int
static
val
StateListDrawable
:
IntArray
static
val
StateListDrawableItem
:
IntArray
static
val
StateListDrawableItem_android_drawable
:
Int
static
val
StateListDrawable_android_constantSize
:
Int
static
val
StateListDrawable_android_dither
:
Int
static
val
StateListDrawable_android_enterFadeDuration
:
Int
static
val
StateListDrawable_android_exitFadeDuration
:
Int
static
val
StateListDrawable_android_variablePadding
:
Int
static
val
StateListDrawable_android_visible
:
Int
static
val
SwitchCompat
:
IntArray
static
val
SwitchCompat_android_textOff
:
Int
static
val
SwitchCompat_android_textOn
:
Int
static
val
SwitchCompat_android_thumb
:
Int
static
val
SwitchCompat_showText
:
Int
static
val
SwitchCompat_splitTrack
:
Int
static
val
SwitchCompat_switchMinWidth
:
Int
static
val
SwitchCompat_switchPadding
:
Int
static
val
SwitchCompat_switchTextAppearance
:
Int
static
val
SwitchCompat_thumbTextPadding
:
Int
static
val
SwitchCompat_thumbTint
:
Int
static
val
SwitchCompat_thumbTintMode
:
Int
static
val
SwitchCompat_track
:
Int
static
val
SwitchCompat_trackTint
:
Int
static
val
SwitchCompat_trackTintMode
:
Int
static
val
TextAppearance
:
IntArray
static
val
TextAppearance_android_fontFamily
:
Int
static
val
TextAppearance_android_shadowColor
:
Int
static
val
TextAppearance_android_shadowDx
:
Int
static
val
TextAppearance_android_shadowDy
:
Int
static
val
TextAppearance_android_shadowRadius
:
Int
static
val
TextAppearance_android_textColor
:
Int
static
val
TextAppearance_android_textColorHint
:
Int
static
val
TextAppearance_android_textColorLink
:
Int
static
val
TextAppearance_android_textSize
:
Int
static
val
TextAppearance_android_textStyle
:
Int
static
val
TextAppearance_android_typeface
:
Int
static
val
TextAppearance_fontFamily
:
Int
static
val
TextAppearance_textAllCaps
:
Int
static
val
Toolbar
:
IntArray
static
val
Toolbar_android_gravity
:
Int
static
val
Toolbar_android_minHeight
:
Int
static
val
Toolbar_buttonGravity
:
Int
static
val
Toolbar_collapseContentDescription
:
Int
static
val
Toolbar_collapseIcon
:
Int
static
val
Toolbar_contentInsetEnd
:
Int
static
val
Toolbar_contentInsetEndWithActions
:
Int
static
val
Toolbar_contentInsetLeft
:
Int
static
val
Toolbar_contentInsetRight
:
Int
static
val
Toolbar_contentInsetStart
:
Int
static
val
Toolbar_contentInsetStartWithNavigation
:
Int
static
val
Toolbar_logo
:
Int
static
val
Toolbar_logoDescription
:
Int
static
val
Toolbar_maxButtonHeight
:
Int
static
val
Toolbar_navigationContentDescription
:
Int
static
val
Toolbar_navigationIcon
:
Int
static
val
Toolbar_popupTheme
:
Int
static
val
Toolbar_subtitle
:
Int
static
val
Toolbar_subtitleTextAppearance
:
Int
static
val
Toolbar_subtitleTextColor
:
Int
static
val
Toolbar_title
:
Int
static
val
Toolbar_titleMargin
:
Int
static
val
Toolbar_titleMarginBottom
:
Int
static
val
Toolbar_titleMarginEnd
:
Int
static
val
Toolbar_titleMarginStart
:
Int
static
val
Toolbar_titleMarginTop
:
Int
static
val
Toolbar_titleMargins
:
Int
static
val
Toolbar_titleTextAppearance
:
Int
static
val
Toolbar_titleTextColor
:
Int
static
val
View
:
IntArray
static
val
ViewBackgroundHelper
:
IntArray
static
val
ViewBackgroundHelper_android_background
:
Int
static
val
ViewBackgroundHelper_backgroundTint
:
Int
static
val
ViewBackgroundHelper_backgroundTintMode
:
Int
static
val
ViewStubCompat
:
IntArray
static
val
ViewStubCompat_android_id
:
Int
static
val
ViewStubCompat_android_inflatedId
:
Int
static
val
ViewStubCompat_android_layout
:
Int
static
val
View_android_focusable
:
Int
static
val
View_android_theme
:
Int
static
val
View_paddingEnd
:
Int
static
val
View_paddingStart
:
Int
static
val
View_theme
:
Int
class
R
Module Contents
class
anim
Module Contents
static
val
abc_fade_in
:
Int
static
val
abc_fade_out
:
Int
static
val
abc_grow_fade_in_from_bottom
:
Int
static
val
abc_popup_enter
:
Int
static
val
abc_popup_exit
:
Int
static
val
abc_shrink_fade_out_from_bottom
:
Int
static
val
abc_slide_in_bottom
:
Int
static
val
abc_slide_in_top
:
Int
static
val
abc_slide_out_bottom
:
Int
static
val
abc_slide_out_top
:
Int
static
val
abc_tooltip_enter
:
Int
static
val
abc_tooltip_exit
:
Int
class
attr
Module Contents
static
val
actionBarDivider
:
Int
static
val
actionBarItemBackground
:
Int
static
val
actionBarPopupTheme
:
Int
static
val
actionBarSize
:
Int
static
val
actionBarSplitStyle
:
Int
static
val
actionBarStyle
:
Int
static
val
actionBarTabBarStyle
:
Int
static
val
actionBarTabStyle
:
Int
static
val
actionBarTabTextStyle
:
Int
static
val
actionBarTheme
:
Int
static
val
actionBarWidgetTheme
:
Int
static
val
actionButtonStyle
:
Int
static
val
actionDropDownStyle
:
Int
static
val
actionLayout
:
Int
static
val
actionMenuTextAppearance
:
Int
static
val
actionMenuTextColor
:
Int
static
val
actionModeBackground
:
Int
static
val
actionModeCloseButtonStyle
:
Int
static
val
actionModeCloseDrawable
:
Int
static
val
actionModeCopyDrawable
:
Int
static
val
actionModeCutDrawable
:
Int
static
val
actionModeFindDrawable
:
Int
static
val
actionModePasteDrawable
:
Int
static
val
actionModePopupWindowStyle
:
Int
static
val
actionModeSelectAllDrawable
:
Int
static
val
actionModeShareDrawable
:
Int
static
val
actionModeSplitBackground
:
Int
static
val
actionModeStyle
:
Int
static
val
actionModeWebSearchDrawable
:
Int
static
val
actionOverflowButtonStyle
:
Int
static
val
actionOverflowMenuStyle
:
Int
static
val
actionProviderClass
:
Int
static
val
actionViewClass
:
Int
static
val
activityChooserViewStyle
:
Int
static
val
alertDialogButtonGroupStyle
:
Int
static
val
alertDialogCenterButtons
:
Int
static
val
alertDialogStyle
:
Int
static
val
alertDialogTheme
:
Int
static
val
allowStacking
:
Int
static
val
alpha
:
Int
static
val
alphabeticModifiers
:
Int
static
val
arrowHeadLength
:
Int
static
val
arrowShaftLength
:
Int
static
val
autoCompleteTextViewStyle
:
Int
static
val
autoSizeMaxTextSize
:
Int
static
val
autoSizeMinTextSize
:
Int
static
val
autoSizePresetSizes
:
Int
static
val
autoSizeStepGranularity
:
Int
static
val
autoSizeTextType
:
Int
static
val
background
:
Int
static
val
backgroundSplit
:
Int
static
val
backgroundStacked
:
Int
static
val
backgroundTint
:
Int
static
val
backgroundTintMode
:
Int
static
val
barLength
:
Int
static
val
borderlessButtonStyle
:
Int
static
val
buttonBarButtonStyle
:
Int
static
val
buttonBarNegativeButtonStyle
:
Int
static
val
buttonBarNeutralButtonStyle
:
Int
static
val
buttonBarPositiveButtonStyle
:
Int
static
val
buttonBarStyle
:
Int
static
val
buttonGravity
:
Int
static
val
buttonIconDimen
:
Int
static
val
buttonPanelSideLayout
:
Int
static
val
buttonStyle
:
Int
static
val
buttonStyleSmall
:
Int
static
val
buttonTint
:
Int
static
val
buttonTintMode
:
Int
static
val
checkboxStyle
:
Int
static
val
checkedTextViewStyle
:
Int
static
val
closeIcon
:
Int
static
val
closeItemLayout
:
Int
static
val
collapseContentDescription
:
Int
static
val
collapseIcon
:
Int
static
val
color
:
Int
static
val
colorAccent
:
Int
static
val
colorBackgroundFloating
:
Int
static
val
colorButtonNormal
:
Int
static
val
colorControlActivated
:
Int
static
val
colorControlHighlight
:
Int
static
val
colorControlNormal
:
Int
static
val
colorError
:
Int
static
val
colorPrimary
:
Int
static
val
colorPrimaryDark
:
Int
static
val
colorSwitchThumbNormal
:
Int
static
val
commitIcon
:
Int
static
val
contentDescription
:
Int
static
val
contentInsetEnd
:
Int
static
val
contentInsetEndWithActions
:
Int
static
val
contentInsetLeft
:
Int
static
val
contentInsetRight
:
Int
static
val
contentInsetStart
:
Int
static
val
contentInsetStartWithNavigation
:
Int
static
val
controlBackground
:
Int
static
val
coordinatorLayoutStyle
:
Int
static
val
customNavigationLayout
:
Int
static
val
defaultQueryHint
:
Int
static
val
dialogCornerRadius
:
Int
static
val
dialogPreferredPadding
:
Int
static
val
dialogTheme
:
Int
static
val
displayOptions
:
Int
static
val
divider
:
Int
static
val
dividerHorizontal
:
Int
static
val
dividerPadding
:
Int
static
val
dividerVertical
:
Int
static
val
drawableSize
:
Int
static
val
drawerArrowStyle
:
Int
static
val
dropDownListViewStyle
:
Int
static
val
dropdownListPreferredItemHeight
:
Int
static
val
editTextBackground
:
Int
static
val
editTextColor
:
Int
static
val
editTextStyle
:
Int
static
val
elevation
:
Int
static
val
expandActivityOverflowButtonDrawable
:
Int
static
val
firstBaselineToTopHeight
:
Int
static
val
font
:
Int
static
val
fontFamily
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
gapBetweenBars
:
Int
static
val
goIcon
:
Int
static
val
height
:
Int
static
val
hideOnContentScroll
:
Int
static
val
homeAsUpIndicator
:
Int
static
val
homeLayout
:
Int
static
val
icon
:
Int
static
val
iconTint
:
Int
static
val
iconTintMode
:
Int
static
val
iconifiedByDefault
:
Int
static
val
imageButtonStyle
:
Int
static
val
indeterminateProgressStyle
:
Int
static
val
initialActivityCount
:
Int
static
val
isLightTheme
:
Int
static
val
itemPadding
:
Int
static
val
keylines
:
Int
static
val
lastBaselineToBottomHeight
:
Int
static
val
layout
:
Int
static
val
layout_anchor
:
Int
static
val
layout_anchorGravity
:
Int
static
val
layout_behavior
:
Int
static
val
layout_dodgeInsetEdges
:
Int
static
val
layout_insetEdge
:
Int
static
val
layout_keyline
:
Int
static
val
lineHeight
:
Int
static
val
listChoiceBackgroundIndicator
:
Int
static
val
listDividerAlertDialog
:
Int
static
val
listItemLayout
:
Int
static
val
listLayout
:
Int
static
val
listMenuViewStyle
:
Int
static
val
listPopupWindowStyle
:
Int
static
val
listPreferredItemHeight
:
Int
static
val
listPreferredItemHeightLarge
:
Int
static
val
listPreferredItemHeightSmall
:
Int
static
val
listPreferredItemPaddingLeft
:
Int
static
val
listPreferredItemPaddingRight
:
Int
static
val
logo
:
Int
static
val
logoDescription
:
Int
static
val
maxButtonHeight
:
Int
static
val
measureWithLargestChild
:
Int
static
val
multiChoiceItemLayout
:
Int
static
val
navigationContentDescription
:
Int
static
val
navigationIcon
:
Int
static
val
navigationMode
:
Int
static
val
numericModifiers
:
Int
static
val
overlapAnchor
:
Int
static
val
paddingBottomNoButtons
:
Int
static
val
paddingEnd
:
Int
static
val
paddingStart
:
Int
static
val
paddingTopNoTitle
:
Int
static
val
panelBackground
:
Int
static
val
panelMenuListTheme
:
Int
static
val
panelMenuListWidth
:
Int
static
val
popupMenuStyle
:
Int
static
val
popupTheme
:
Int
static
val
popupWindowStyle
:
Int
static
val
preserveIconSpacing
:
Int
static
val
progressBarPadding
:
Int
static
val
progressBarStyle
:
Int
static
val
queryBackground
:
Int
static
val
queryHint
:
Int
static
val
radioButtonStyle
:
Int
static
val
ratingBarStyle
:
Int
static
val
ratingBarStyleIndicator
:
Int
static
val
ratingBarStyleSmall
:
Int
static
val
searchHintIcon
:
Int
static
val
searchIcon
:
Int
static
val
searchViewStyle
:
Int
static
val
seekBarStyle
:
Int
static
val
selectableItemBackground
:
Int
static
val
selectableItemBackgroundBorderless
:
Int
static
val
showAsAction
:
Int
static
val
showDividers
:
Int
static
val
showText
:
Int
static
val
showTitle
:
Int
static
val
singleChoiceItemLayout
:
Int
static
val
spinBars
:
Int
static
val
spinnerDropDownItemStyle
:
Int
static
val
spinnerStyle
:
Int
static
val
splitTrack
:
Int
static
val
srcCompat
:
Int
static
val
state_above_anchor
:
Int
static
val
statusBarBackground
:
Int
static
val
subMenuArrow
:
Int
static
val
submitBackground
:
Int
static
val
subtitle
:
Int
static
val
subtitleTextAppearance
:
Int
static
val
subtitleTextColor
:
Int
static
val
subtitleTextStyle
:
Int
static
val
suggestionRowLayout
:
Int
static
val
switchMinWidth
:
Int
static
val
switchPadding
:
Int
static
val
switchStyle
:
Int
static
val
switchTextAppearance
:
Int
static
val
textAllCaps
:
Int
static
val
textAppearanceLargePopupMenu
:
Int
static
val
textAppearanceListItem
:
Int
static
val
textAppearanceListItemSecondary
:
Int
static
val
textAppearanceListItemSmall
:
Int
static
val
textAppearancePopupMenuHeader
:
Int
static
val
textAppearanceSearchResultSubtitle
:
Int
static
val
textAppearanceSearchResultTitle
:
Int
static
val
textAppearanceSmallPopupMenu
:
Int
static
val
textColorAlertDialogListItem
:
Int
static
val
textColorSearchUrl
:
Int
static
val
theme
:
Int
static
val
thickness
:
Int
static
val
thumbTextPadding
:
Int
static
val
thumbTint
:
Int
static
val
thumbTintMode
:
Int
static
val
tickMark
:
Int
static
val
tickMarkTint
:
Int
static
val
tickMarkTintMode
:
Int
static
val
tint
:
Int
static
val
tintMode
:
Int
static
val
title
:
Int
static
val
titleMargin
:
Int
static
val
titleMarginBottom
:
Int
static
val
titleMarginEnd
:
Int
static
val
titleMarginStart
:
Int
static
val
titleMarginTop
:
Int
static
val
titleMargins
:
Int
static
val
titleTextAppearance
:
Int
static
val
titleTextColor
:
Int
static
val
titleTextStyle
:
Int
static
val
toolbarNavigationButtonStyle
:
Int
static
val
toolbarStyle
:
Int
static
val
tooltipForegroundColor
:
Int
static
val
tooltipFrameBackground
:
Int
static
val
tooltipText
:
Int
static
val
track
:
Int
static
val
trackTint
:
Int
static
val
trackTintMode
:
Int
static
val
ttcIndex
:
Int
static
val
viewInflaterClass
:
Int
static
val
voiceIcon
:
Int
static
val
windowActionBar
:
Int
static
val
windowActionBarOverlay
:
Int
static
val
windowActionModeOverlay
:
Int
static
val
windowFixedHeightMajor
:
Int
static
val
windowFixedHeightMinor
:
Int
static
val
windowFixedWidthMajor
:
Int
static
val
windowFixedWidthMinor
:
Int
static
val
windowMinWidthMajor
:
Int
static
val
windowMinWidthMinor
:
Int
static
val
windowNoTitle
:
Int
class
bool
Module Contents
static
val
abc_action_bar_embed_tabs
:
Int
static
val
abc_allow_stacked_button_bar
:
Int
static
val
abc_config_actionMenuItemAllCaps
:
Int
class
color
Module Contents
static
val
abc_background_cache_hint_selector_material_dark
:
Int
static
val
abc_background_cache_hint_selector_material_light
:
Int
static
val
abc_btn_colored_borderless_text_material
:
Int
static
val
abc_btn_colored_text_material
:
Int
static
val
abc_color_highlight_material
:
Int
static
val
abc_hint_foreground_material_dark
:
Int
static
val
abc_hint_foreground_material_light
:
Int
static
val
abc_input_method_navigation_guard
:
Int
static
val
abc_primary_text_disable_only_material_dark
:
Int
static
val
abc_primary_text_disable_only_material_light
:
Int
static
val
abc_primary_text_material_dark
:
Int
static
val
abc_primary_text_material_light
:
Int
static
val
abc_search_url_text
:
Int
static
val
abc_search_url_text_normal
:
Int
static
val
abc_search_url_text_pressed
:
Int
static
val
abc_search_url_text_selected
:
Int
static
val
abc_secondary_text_material_dark
:
Int
static
val
abc_secondary_text_material_light
:
Int
static
val
abc_tint_btn_checkable
:
Int
static
val
abc_tint_default
:
Int
static
val
abc_tint_edittext
:
Int
static
val
abc_tint_seek_thumb
:
Int
static
val
abc_tint_spinner
:
Int
static
val
abc_tint_switch_track
:
Int
static
val
accent_material_dark
:
Int
static
val
accent_material_light
:
Int
static
val
background_floating_material_dark
:
Int
static
val
background_floating_material_light
:
Int
static
val
background_material_dark
:
Int
static
val
background_material_light
:
Int
static
val
bright_foreground_disabled_material_dark
:
Int
static
val
bright_foreground_disabled_material_light
:
Int
static
val
bright_foreground_inverse_material_dark
:
Int
static
val
bright_foreground_inverse_material_light
:
Int
static
val
bright_foreground_material_dark
:
Int
static
val
bright_foreground_material_light
:
Int
static
val
button_material_dark
:
Int
static
val
button_material_light
:
Int
static
val
dim_foreground_disabled_material_dark
:
Int
static
val
dim_foreground_disabled_material_light
:
Int
static
val
dim_foreground_material_dark
:
Int
static
val
dim_foreground_material_light
:
Int
static
val
error_color_material_dark
:
Int
static
val
error_color_material_light
:
Int
static
val
foreground_material_dark
:
Int
static
val
foreground_material_light
:
Int
static
val
highlighted_text_material_dark
:
Int
static
val
highlighted_text_material_light
:
Int
static
val
material_blue_grey_800
:
Int
static
val
material_blue_grey_900
:
Int
static
val
material_blue_grey_950
:
Int
static
val
material_deep_teal_200
:
Int
static
val
material_deep_teal_500
:
Int
static
val
material_grey_100
:
Int
static
val
material_grey_300
:
Int
static
val
material_grey_50
:
Int
static
val
material_grey_600
:
Int
static
val
material_grey_800
:
Int
static
val
material_grey_850
:
Int
static
val
material_grey_900
:
Int
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
primary_dark_material_dark
:
Int
static
val
primary_dark_material_light
:
Int
static
val
primary_material_dark
:
Int
static
val
primary_material_light
:
Int
static
val
primary_text_default_material_dark
:
Int
static
val
primary_text_default_material_light
:
Int
static
val
primary_text_disabled_material_dark
:
Int
static
val
primary_text_disabled_material_light
:
Int
static
val
ripple_material_dark
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_dark
:
Int
static
val
secondary_text_default_material_light
:
Int
static
val
secondary_text_disabled_material_dark
:
Int
static
val
secondary_text_disabled_material_light
:
Int
static
val
switch_thumb_disabled_material_dark
:
Int
static
val
switch_thumb_disabled_material_light
:
Int
static
val
switch_thumb_material_dark
:
Int
static
val
switch_thumb_material_light
:
Int
static
val
switch_thumb_normal_material_dark
:
Int
static
val
switch_thumb_normal_material_light
:
Int
static
val
tooltip_background_dark
:
Int
static
val
tooltip_background_light
:
Int
class
dimen
Module Contents
static
val
abc_action_bar_content_inset_material
:
Int
static
val
abc_action_bar_content_inset_with_nav
:
Int
static
val
abc_action_bar_default_height_material
:
Int
static
val
abc_action_bar_default_padding_end_material
:
Int
static
val
abc_action_bar_default_padding_start_material
:
Int
static
val
abc_action_bar_elevation_material
:
Int
static
val
abc_action_bar_icon_vertical_padding_material
:
Int
static
val
abc_action_bar_overflow_padding_end_material
:
Int
static
val
abc_action_bar_overflow_padding_start_material
:
Int
static
val
abc_action_bar_stacked_max_height
:
Int
static
val
abc_action_bar_stacked_tab_max_width
:
Int
static
val
abc_action_bar_subtitle_bottom_margin_material
:
Int
static
val
abc_action_bar_subtitle_top_margin_material
:
Int
static
val
abc_action_button_min_height_material
:
Int
static
val
abc_action_button_min_width_material
:
Int
static
val
abc_action_button_min_width_overflow_material
:
Int
static
val
abc_alert_dialog_button_bar_height
:
Int
static
val
abc_alert_dialog_button_dimen
:
Int
static
val
abc_button_inset_horizontal_material
:
Int
static
val
abc_button_inset_vertical_material
:
Int
static
val
abc_button_padding_horizontal_material
:
Int
static
val
abc_button_padding_vertical_material
:
Int
static
val
abc_cascading_menus_min_smallest_width
:
Int
static
val
abc_config_prefDialogWidth
:
Int
static
val
abc_control_corner_material
:
Int
static
val
abc_control_inset_material
:
Int
static
val
abc_control_padding_material
:
Int
static
val
abc_dialog_corner_radius_material
:
Int
static
val
abc_dialog_fixed_height_major
:
Int
static
val
abc_dialog_fixed_height_minor
:
Int
static
val
abc_dialog_fixed_width_major
:
Int
static
val
abc_dialog_fixed_width_minor
:
Int
static
val
abc_dialog_list_padding_bottom_no_buttons
:
Int
static
val
abc_dialog_list_padding_top_no_title
:
Int
static
val
abc_dialog_min_width_major
:
Int
static
val
abc_dialog_min_width_minor
:
Int
static
val
abc_dialog_padding_material
:
Int
static
val
abc_dialog_padding_top_material
:
Int
static
val
abc_dialog_title_divider_material
:
Int
static
val
abc_disabled_alpha_material_dark
:
Int
static
val
abc_disabled_alpha_material_light
:
Int
static
val
abc_dropdownitem_icon_width
:
Int
static
val
abc_dropdownitem_text_padding_left
:
Int
static
val
abc_dropdownitem_text_padding_right
:
Int
static
val
abc_edit_text_inset_bottom_material
:
Int
static
val
abc_edit_text_inset_horizontal_material
:
Int
static
val
abc_edit_text_inset_top_material
:
Int
static
val
abc_floating_window_z
:
Int
static
val
abc_list_item_padding_horizontal_material
:
Int
static
val
abc_panel_menu_list_width
:
Int
static
val
abc_progress_bar_height_material
:
Int
static
val
abc_search_view_preferred_height
:
Int
static
val
abc_search_view_preferred_width
:
Int
static
val
abc_seekbar_track_background_height_material
:
Int
static
val
abc_seekbar_track_progress_height_material
:
Int
static
val
abc_select_dialog_padding_start_material
:
Int
static
val
abc_switch_padding
:
Int
static
val
abc_text_size_body_1_material
:
Int
static
val
abc_text_size_body_2_material
:
Int
static
val
abc_text_size_button_material
:
Int
static
val
abc_text_size_caption_material
:
Int
static
val
abc_text_size_display_1_material
:
Int
static
val
abc_text_size_display_2_material
:
Int
static
val
abc_text_size_display_3_material
:
Int
static
val
abc_text_size_display_4_material
:
Int
static
val
abc_text_size_headline_material
:
Int
static
val
abc_text_size_large_material
:
Int
static
val
abc_text_size_medium_material
:
Int
static
val
abc_text_size_menu_header_material
:
Int
static
val
abc_text_size_menu_material
:
Int
static
val
abc_text_size_small_material
:
Int
static
val
abc_text_size_subhead_material
:
Int
static
val
abc_text_size_subtitle_material_toolbar
:
Int
static
val
abc_text_size_title_material
:
Int
static
val
abc_text_size_title_material_toolbar
:
Int
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
disabled_alpha_material_dark
:
Int
static
val
disabled_alpha_material_light
:
Int
static
val
highlight_alpha_material_colored
:
Int
static
val
highlight_alpha_material_dark
:
Int
static
val
highlight_alpha_material_light
:
Int
static
val
hint_alpha_material_dark
:
Int
static
val
hint_alpha_material_light
:
Int
static
val
hint_pressed_alpha_material_dark
:
Int
static
val
hint_pressed_alpha_material_light
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
static
val
tooltip_corner_radius
:
Int
static
val
tooltip_horizontal_padding
:
Int
static
val
tooltip_margin
:
Int
static
val
tooltip_precise_anchor_extra_offset
:
Int
static
val
tooltip_precise_anchor_threshold
:
Int
static
val
tooltip_vertical_padding
:
Int
static
val
tooltip_y_offset_non_touch
:
Int
static
val
tooltip_y_offset_touch
:
Int
class
drawable
Module Contents
static
val
abc_ab_share_pack_mtrl_alpha
:
Int
static
val
abc_action_bar_item_background_material
:
Int
static
val
abc_btn_borderless_material
:
Int
static
val
abc_btn_check_material
:
Int
static
val
abc_btn_check_to_on_mtrl_000
:
Int
static
val
abc_btn_check_to_on_mtrl_015
:
Int
static
val
abc_btn_colored_material
:
Int
static
val
abc_btn_default_mtrl_shape
:
Int
static
val
abc_btn_radio_material
:
Int
static
val
abc_btn_radio_to_on_mtrl_000
:
Int
static
val
abc_btn_radio_to_on_mtrl_015
:
Int
static
val
abc_btn_switch_to_on_mtrl_00001
:
Int
static
val
abc_btn_switch_to_on_mtrl_00012
:
Int
static
val
abc_cab_background_internal_bg
:
Int
static
val
abc_cab_background_top_material
:
Int
static
val
abc_cab_background_top_mtrl_alpha
:
Int
static
val
abc_control_background_material
:
Int
static
val
abc_dialog_material_background
:
Int
static
val
abc_edit_text_material
:
Int
static
val
abc_ic_ab_back_material
:
Int
static
val
abc_ic_arrow_drop_right_black_24dp
:
Int
static
val
abc_ic_clear_material
:
Int
static
val
abc_ic_commit_search_api_mtrl_alpha
:
Int
static
val
abc_ic_go_search_api_material
:
Int
static
val
abc_ic_menu_copy_mtrl_am_alpha
:
Int
static
val
abc_ic_menu_cut_mtrl_alpha
:
Int
static
val
abc_ic_menu_overflow_material
:
Int
static
val
abc_ic_menu_paste_mtrl_am_alpha
:
Int
static
val
abc_ic_menu_selectall_mtrl_alpha
:
Int
static
val
abc_ic_menu_share_mtrl_alpha
:
Int
static
val
abc_ic_search_api_material
:
Int
static
val
abc_ic_star_black_16dp
:
Int
static
val
abc_ic_star_black_36dp
:
Int
static
val
abc_ic_star_black_48dp
:
Int
static
val
abc_ic_star_half_black_16dp
:
Int
static
val
abc_ic_star_half_black_36dp
:
Int
static
val
abc_ic_star_half_black_48dp
:
Int
static
val
abc_ic_voice_search_api_material
:
Int
static
val
abc_item_background_holo_dark
:
Int
static
val
abc_item_background_holo_light
:
Int
static
val
abc_list_divider_material
:
Int
static
val
abc_list_divider_mtrl_alpha
:
Int
static
val
abc_list_focused_holo
:
Int
static
val
abc_list_longpressed_holo
:
Int
static
val
abc_list_pressed_holo_dark
:
Int
static
val
abc_list_pressed_holo_light
:
Int
static
val
abc_list_selector_background_transition_holo_dark
:
Int
static
val
abc_list_selector_background_transition_holo_light
:
Int
static
val
abc_list_selector_disabled_holo_dark
:
Int
static
val
abc_list_selector_disabled_holo_light
:
Int
static
val
abc_list_selector_holo_dark
:
Int
static
val
abc_list_selector_holo_light
:
Int
static
val
abc_menu_hardkey_panel_mtrl_mult
:
Int
static
val
abc_popup_background_mtrl_mult
:
Int
static
val
abc_ratingbar_indicator_material
:
Int
static
val
abc_ratingbar_material
:
Int
static
val
abc_ratingbar_small_material
:
Int
static
val
abc_scrubber_control_off_mtrl_alpha
:
Int
static
val
abc_scrubber_control_to_pressed_mtrl_000
:
Int
static
val
abc_scrubber_control_to_pressed_mtrl_005
:
Int
static
val
abc_scrubber_primary_mtrl_alpha
:
Int
static
val
abc_scrubber_track_mtrl_alpha
:
Int
static
val
abc_seekbar_thumb_material
:
Int
static
val
abc_seekbar_tick_mark_material
:
Int
static
val
abc_seekbar_track_material
:
Int
static
val
abc_spinner_mtrl_am_alpha
:
Int
static
val
abc_spinner_textfield_background_material
:
Int
static
val
abc_switch_thumb_material
:
Int
static
val
abc_switch_track_mtrl_alpha
:
Int
static
val
abc_tab_indicator_material
:
Int
static
val
abc_tab_indicator_mtrl_alpha
:
Int
static
val
abc_text_cursor_material
:
Int
static
val
abc_text_select_handle_left_mtrl_dark
:
Int
static
val
abc_text_select_handle_left_mtrl_light
:
Int
static
val
abc_text_select_handle_middle_mtrl_dark
:
Int
static
val
abc_text_select_handle_middle_mtrl_light
:
Int
static
val
abc_text_select_handle_right_mtrl_dark
:
Int
static
val
abc_text_select_handle_right_mtrl_light
:
Int
static
val
abc_textfield_activated_mtrl_alpha
:
Int
static
val
abc_textfield_default_mtrl_alpha
:
Int
static
val
abc_textfield_search_activated_mtrl_alpha
:
Int
static
val
abc_textfield_search_default_mtrl_alpha
:
Int
static
val
abc_textfield_search_material
:
Int
static
val
abc_vector_test
:
Int
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
static
val
tooltip_frame_dark
:
Int
static
val
tooltip_frame_light
:
Int
class
id
Module Contents
static
val
action_bar
:
Int
static
val
action_bar_activity_content
:
Int
static
val
action_bar_container
:
Int
static
val
action_bar_root
:
Int
static
val
action_bar_spinner
:
Int
static
val
action_bar_subtitle
:
Int
static
val
action_bar_title
:
Int
static
val
action_container
:
Int
static
val
action_context_bar
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_menu_divider
:
Int
static
val
action_menu_presenter
:
Int
static
val
action_mode_bar
:
Int
static
val
action_mode_bar_stub
:
Int
static
val
action_mode_close_button
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
activity_chooser_view_content
:
Int
static
val
add
:
Int
static
val
alertTitle
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
bottom
:
Int
static
val
buttonPanel
:
Int
static
val
checkbox
:
Int
static
val
chronometer
:
Int
static
val
content
:
Int
static
val
contentPanel
:
Int
static
val
custom
:
Int
static
val
customPanel
:
Int
static
val
decor_content_parent
:
Int
static
val
default_activity_button
:
Int
static
val
edit_query
:
Int
static
val
end
:
Int
static
val
expand_activities_button
:
Int
static
val
expanded_menu
:
Int
static
val
forever
:
Int
static
val
group_divider
:
Int
static
val
home
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
image
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
left
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
listMode
:
Int
static
val
list_item
:
Int
static
val
message
:
Int
static
val
multiply
:
Int
static
val
none
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
parentPanel
:
Int
static
val
progress_circular
:
Int
static
val
progress_horizontal
:
Int
static
val
radio
:
Int
static
val
right
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
screen
:
Int
static
val
scrollIndicatorDown
:
Int
static
val
scrollIndicatorUp
:
Int
static
val
scrollView
:
Int
static
val
search_badge
:
Int
static
val
search_bar
:
Int
static
val
search_button
:
Int
static
val
search_close_btn
:
Int
static
val
search_edit_frame
:
Int
static
val
search_go_btn
:
Int
static
val
search_mag_icon
:
Int
static
val
search_plate
:
Int
static
val
search_src_text
:
Int
static
val
search_voice_btn
:
Int
static
val
select_dialog_listview
:
Int
static
val
shortcut
:
Int
static
val
spacer
:
Int
static
val
split_action_bar
:
Int
static
val
src_atop
:
Int
static
val
src_in
:
Int
static
val
src_over
:
Int
static
val
start
:
Int
static
val
submenuarrow
:
Int
static
val
submit_area
:
Int
static
val
tabMode
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
textSpacerNoButtons
:
Int
static
val
textSpacerNoTitle
:
Int
static
val
time
:
Int
static
val
title
:
Int
static
val
titleDividerNoCustom
:
Int
static
val
title_template
:
Int
static
val
top
:
Int
static
val
topPanel
:
Int
static
val
uniform
:
Int
static
val
up
:
Int
static
val
wrap_content
:
Int
class
integer
Module Contents
static
val
abc_config_activityDefaultDur
:
Int
static
val
abc_config_activityShortDur
:
Int
static
val
cancel_button_image_alpha
:
Int
static
val
config_tooltipAnimTime
:
Int
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
abc_action_bar_title_item
:
Int
static
val
abc_action_bar_up_container
:
Int
static
val
abc_action_menu_item_layout
:
Int
static
val
abc_action_menu_layout
:
Int
static
val
abc_action_mode_bar
:
Int
static
val
abc_action_mode_close_item_material
:
Int
static
val
abc_activity_chooser_view
:
Int
static
val
abc_activity_chooser_view_list_item
:
Int
static
val
abc_alert_dialog_button_bar_material
:
Int
static
val
abc_alert_dialog_material
:
Int
static
val
abc_alert_dialog_title_material
:
Int
static
val
abc_cascading_menu_item_layout
:
Int
static
val
abc_dialog_title_material
:
Int
static
val
abc_expanded_menu_layout
:
Int
static
val
abc_list_menu_item_checkbox
:
Int
static
val
abc_list_menu_item_icon
:
Int
static
val
abc_list_menu_item_layout
:
Int
static
val
abc_list_menu_item_radio
:
Int
static
val
abc_popup_menu_header_item_layout
:
Int
static
val
abc_popup_menu_item_layout
:
Int
static
val
abc_screen_content_include
:
Int
static
val
abc_screen_simple
:
Int
static
val
abc_screen_simple_overlay_action_mode
:
Int
static
val
abc_screen_toolbar
:
Int
static
val
abc_search_dropdown_item_icons_2line
:
Int
static
val
abc_search_view
:
Int
static
val
abc_select_dialog_material
:
Int
static
val
abc_tooltip
:
Int
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
static
val
select_dialog_item_material
:
Int
static
val
select_dialog_multichoice_material
:
Int
static
val
select_dialog_singlechoice_material
:
Int
static
val
support_simple_spinner_dropdown_item
:
Int
class
string
Module Contents
static
val
abc_action_bar_home_description
:
Int
static
val
abc_action_bar_up_description
:
Int
static
val
abc_action_menu_overflow_description
:
Int
static
val
abc_action_mode_done
:
Int
static
val
abc_activity_chooser_view_see_all
:
Int
static
val
abc_activitychooserview_choose_application
:
Int
static
val
abc_capital_off
:
Int
static
val
abc_capital_on
:
Int
static
val
abc_font_family_body_1_material
:
Int
static
val
abc_font_family_body_2_material
:
Int
static
val
abc_font_family_button_material
:
Int
static
val
abc_font_family_caption_material
:
Int
static
val
abc_font_family_display_1_material
:
Int
static
val
abc_font_family_display_2_material
:
Int
static
val
abc_font_family_display_3_material
:
Int
static
val
abc_font_family_display_4_material
:
Int
static
val
abc_font_family_headline_material
:
Int
static
val
abc_font_family_menu_material
:
Int
static
val
abc_font_family_subhead_material
:
Int
static
val
abc_font_family_title_material
:
Int
static
val
abc_menu_alt_shortcut_label
:
Int
static
val
abc_menu_ctrl_shortcut_label
:
Int
static
val
abc_menu_delete_shortcut_label
:
Int
static
val
abc_menu_enter_shortcut_label
:
Int
static
val
abc_menu_function_shortcut_label
:
Int
static
val
abc_menu_meta_shortcut_label
:
Int
static
val
abc_menu_shift_shortcut_label
:
Int
static
val
abc_menu_space_shortcut_label
:
Int
static
val
abc_menu_sym_shortcut_label
:
Int
static
val
abc_prepend_shortcut_label
:
Int
static
val
abc_search_hint
:
Int
static
val
abc_searchview_description_clear
:
Int
static
val
abc_searchview_description_query
:
Int
static
val
abc_searchview_description_search
:
Int
static
val
abc_searchview_description_submit
:
Int
static
val
abc_searchview_description_voice
:
Int
static
val
abc_shareactionprovider_share_with
:
Int
static
val
abc_shareactionprovider_share_with_application
:
Int
static
val
abc_toolbar_collapse_description
:
Int
static
val
search_menu_title
:
Int
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
AlertDialog_AppCompat
:
Int
static
val
AlertDialog_AppCompat_Light
:
Int
static
val
Animation_AppCompat_Dialog
:
Int
static
val
Animation_AppCompat_DropDownUp
:
Int
static
val
Animation_AppCompat_Tooltip
:
Int
static
val
Base_AlertDialog_AppCompat
:
Int
static
val
Base_AlertDialog_AppCompat_Light
:
Int
static
val
Base_Animation_AppCompat_Dialog
:
Int
static
val
Base_Animation_AppCompat_DropDownUp
:
Int
static
val
Base_Animation_AppCompat_Tooltip
:
Int
static
val
Base_DialogWindowTitleBackground_AppCompat
:
Int
static
val
Base_DialogWindowTitle_AppCompat
:
Int
static
val
Base_TextAppearance_AppCompat
:
Int
static
val
Base_TextAppearance_AppCompat_Body1
:
Int
static
val
Base_TextAppearance_AppCompat_Body2
:
Int
static
val
Base_TextAppearance_AppCompat_Button
:
Int
static
val
Base_TextAppearance_AppCompat_Caption
:
Int
static
val
Base_TextAppearance_AppCompat_Display1
:
Int
static
val
Base_TextAppearance_AppCompat_Display2
:
Int
static
val
Base_TextAppearance_AppCompat_Display3
:
Int
static
val
Base_TextAppearance_AppCompat_Display4
:
Int
static
val
Base_TextAppearance_AppCompat_Headline
:
Int
static
val
Base_TextAppearance_AppCompat_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Large
:
Int
static
val
Base_TextAppearance_AppCompat_Large_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
:
Int
static
val
Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
:
Int
static
val
Base_TextAppearance_AppCompat_Medium
:
Int
static
val
Base_TextAppearance_AppCompat_Medium_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Menu
:
Int
static
val
Base_TextAppearance_AppCompat_SearchResult
:
Int
static
val
Base_TextAppearance_AppCompat_SearchResult_Subtitle
:
Int
static
val
Base_TextAppearance_AppCompat_SearchResult_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Small
:
Int
static
val
Base_TextAppearance_AppCompat_Small_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Subhead
:
Int
static
val
Base_TextAppearance_AppCompat_Subhead_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Title_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Tooltip
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Menu
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionMode_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button_Colored
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_DropDownItem
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_PopupMenu_Header
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_PopupMenu_Large
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_PopupMenu_Small
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Switch
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem
:
Int
static
val
Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item
:
Int
static
val
Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle
:
Int
static
val
Base_TextAppearance_Widget_AppCompat_Toolbar_Title
:
Int
static
val
Base_ThemeOverlay_AppCompat
:
Int
static
val
Base_ThemeOverlay_AppCompat_ActionBar
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dark
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dark_ActionBar
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dialog
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dialog_Alert
:
Int
static
val
Base_ThemeOverlay_AppCompat_Light
:
Int
static
val
Base_Theme_AppCompat
:
Int
static
val
Base_Theme_AppCompat_CompactMenu
:
Int
static
val
Base_Theme_AppCompat_Dialog
:
Int
static
val
Base_Theme_AppCompat_DialogWhenLarge
:
Int
static
val
Base_Theme_AppCompat_Dialog_Alert
:
Int
static
val
Base_Theme_AppCompat_Dialog_FixedSize
:
Int
static
val
Base_Theme_AppCompat_Dialog_MinWidth
:
Int
static
val
Base_Theme_AppCompat_Light
:
Int
static
val
Base_Theme_AppCompat_Light_DarkActionBar
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog
:
Int
static
val
Base_Theme_AppCompat_Light_DialogWhenLarge
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog_Alert
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog_FixedSize
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog_MinWidth
:
Int
static
val
Base_V21_ThemeOverlay_AppCompat_Dialog
:
Int
static
val
Base_V21_Theme_AppCompat
:
Int
static
val
Base_V21_Theme_AppCompat_Dialog
:
Int
static
val
Base_V21_Theme_AppCompat_Light
:
Int
static
val
Base_V21_Theme_AppCompat_Light_Dialog
:
Int
static
val
Base_V22_Theme_AppCompat
:
Int
static
val
Base_V22_Theme_AppCompat_Light
:
Int
static
val
Base_V23_Theme_AppCompat
:
Int
static
val
Base_V23_Theme_AppCompat_Light
:
Int
static
val
Base_V26_Theme_AppCompat
:
Int
static
val
Base_V26_Theme_AppCompat_Light
:
Int
static
val
Base_V26_Widget_AppCompat_Toolbar
:
Int
static
val
Base_V28_Theme_AppCompat
:
Int
static
val
Base_V28_Theme_AppCompat_Light
:
Int
static
val
Base_V7_ThemeOverlay_AppCompat_Dialog
:
Int
static
val
Base_V7_Theme_AppCompat
:
Int
static
val
Base_V7_Theme_AppCompat_Dialog
:
Int
static
val
Base_V7_Theme_AppCompat_Light
:
Int
static
val
Base_V7_Theme_AppCompat_Light_Dialog
:
Int
static
val
Base_V7_Widget_AppCompat_AutoCompleteTextView
:
Int
static
val
Base_V7_Widget_AppCompat_EditText
:
Int
static
val
Base_V7_Widget_AppCompat_Toolbar
:
Int
static
val
Base_Widget_AppCompat_ActionBar
:
Int
static
val
Base_Widget_AppCompat_ActionBar_Solid
:
Int
static
val
Base_Widget_AppCompat_ActionBar_TabBar
:
Int
static
val
Base_Widget_AppCompat_ActionBar_TabText
:
Int
static
val
Base_Widget_AppCompat_ActionBar_TabView
:
Int
static
val
Base_Widget_AppCompat_ActionButton
:
Int
static
val
Base_Widget_AppCompat_ActionButton_CloseMode
:
Int
static
val
Base_Widget_AppCompat_ActionButton_Overflow
:
Int
static
val
Base_Widget_AppCompat_ActionMode
:
Int
static
val
Base_Widget_AppCompat_ActivityChooserView
:
Int
static
val
Base_Widget_AppCompat_AutoCompleteTextView
:
Int
static
val
Base_Widget_AppCompat_Button
:
Int
static
val
Base_Widget_AppCompat_ButtonBar
:
Int
static
val
Base_Widget_AppCompat_ButtonBar_AlertDialog
:
Int
static
val
Base_Widget_AppCompat_Button_Borderless
:
Int
static
val
Base_Widget_AppCompat_Button_Borderless_Colored
:
Int
static
val
Base_Widget_AppCompat_Button_ButtonBar_AlertDialog
:
Int
static
val
Base_Widget_AppCompat_Button_Colored
:
Int
static
val
Base_Widget_AppCompat_Button_Small
:
Int
static
val
Base_Widget_AppCompat_CompoundButton_CheckBox
:
Int
static
val
Base_Widget_AppCompat_CompoundButton_RadioButton
:
Int
static
val
Base_Widget_AppCompat_CompoundButton_Switch
:
Int
static
val
Base_Widget_AppCompat_DrawerArrowToggle
:
Int
static
val
Base_Widget_AppCompat_DrawerArrowToggle_Common
:
Int
static
val
Base_Widget_AppCompat_DropDownItem_Spinner
:
Int
static
val
Base_Widget_AppCompat_EditText
:
Int
static
val
Base_Widget_AppCompat_ImageButton
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_Solid
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabBar
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabText
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabView
:
Int
static
val
Base_Widget_AppCompat_Light_PopupMenu
:
Int
static
val
Base_Widget_AppCompat_Light_PopupMenu_Overflow
:
Int
static
val
Base_Widget_AppCompat_ListMenuView
:
Int
static
val
Base_Widget_AppCompat_ListPopupWindow
:
Int
static
val
Base_Widget_AppCompat_ListView
:
Int
static
val
Base_Widget_AppCompat_ListView_DropDown
:
Int
static
val
Base_Widget_AppCompat_ListView_Menu
:
Int
static
val
Base_Widget_AppCompat_PopupMenu
:
Int
static
val
Base_Widget_AppCompat_PopupMenu_Overflow
:
Int
static
val
Base_Widget_AppCompat_PopupWindow
:
Int
static
val
Base_Widget_AppCompat_ProgressBar
:
Int
static
val
Base_Widget_AppCompat_ProgressBar_Horizontal
:
Int
static
val
Base_Widget_AppCompat_RatingBar
:
Int
static
val
Base_Widget_AppCompat_RatingBar_Indicator
:
Int
static
val
Base_Widget_AppCompat_RatingBar_Small
:
Int
static
val
Base_Widget_AppCompat_SearchView
:
Int
static
val
Base_Widget_AppCompat_SearchView_ActionBar
:
Int
static
val
Base_Widget_AppCompat_SeekBar
:
Int
static
val
Base_Widget_AppCompat_SeekBar_Discrete
:
Int
static
val
Base_Widget_AppCompat_Spinner
:
Int
static
val
Base_Widget_AppCompat_Spinner_Underlined
:
Int
static
val
Base_Widget_AppCompat_TextView_SpinnerItem
:
Int
static
val
Base_Widget_AppCompat_Toolbar
:
Int
static
val
Base_Widget_AppCompat_Toolbar_Button_Navigation
:
Int
static
val
Platform_AppCompat
:
Int
static
val
Platform_AppCompat_Light
:
Int
static
val
Platform_ThemeOverlay_AppCompat
:
Int
static
val
Platform_ThemeOverlay_AppCompat_Dark
:
Int
static
val
Platform_ThemeOverlay_AppCompat_Light
:
Int
static
val
Platform_V21_AppCompat
:
Int
static
val
Platform_V21_AppCompat_Light
:
Int
static
val
Platform_V25_AppCompat
:
Int
static
val
Platform_V25_AppCompat_Light
:
Int
static
val
Platform_Widget_AppCompat_Spinner
:
Int
static
val
RtlOverlay_DialogWindowTitle_AppCompat
:
Int
static
val
RtlOverlay_Widget_AppCompat_ActionBar_TitleItem
:
Int
static
val
RtlOverlay_Widget_AppCompat_DialogTitle_Icon
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_Text
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_Title
:
Int
static
val
RtlOverlay_Widget_AppCompat_SearchView_MagIcon
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Query
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Text
:
Int
static
val
RtlUnderlay_Widget_AppCompat_ActionButton
:
Int
static
val
RtlUnderlay_Widget_AppCompat_ActionButton_Overflow
:
Int
static
val
TextAppearance_AppCompat
:
Int
static
val
TextAppearance_AppCompat_Body1
:
Int
static
val
TextAppearance_AppCompat_Body2
:
Int
static
val
TextAppearance_AppCompat_Button
:
Int
static
val
TextAppearance_AppCompat_Caption
:
Int
static
val
TextAppearance_AppCompat_Display1
:
Int
static
val
TextAppearance_AppCompat_Display2
:
Int
static
val
TextAppearance_AppCompat_Display3
:
Int
static
val
TextAppearance_AppCompat_Display4
:
Int
static
val
TextAppearance_AppCompat_Headline
:
Int
static
val
TextAppearance_AppCompat_Inverse
:
Int
static
val
TextAppearance_AppCompat_Large
:
Int
static
val
TextAppearance_AppCompat_Large_Inverse
:
Int
static
val
TextAppearance_AppCompat_Light_SearchResult_Subtitle
:
Int
static
val
TextAppearance_AppCompat_Light_SearchResult_Title
:
Int
static
val
TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
:
Int
static
val
TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
:
Int
static
val
TextAppearance_AppCompat_Medium
:
Int
static
val
TextAppearance_AppCompat_Medium_Inverse
:
Int
static
val
TextAppearance_AppCompat_Menu
:
Int
static
val
TextAppearance_AppCompat_SearchResult_Subtitle
:
Int
static
val
TextAppearance_AppCompat_SearchResult_Title
:
Int
static
val
TextAppearance_AppCompat_Small
:
Int
static
val
TextAppearance_AppCompat_Small_Inverse
:
Int
static
val
TextAppearance_AppCompat_Subhead
:
Int
static
val
TextAppearance_AppCompat_Subhead_Inverse
:
Int
static
val
TextAppearance_AppCompat_Title
:
Int
static
val
TextAppearance_AppCompat_Title_Inverse
:
Int
static
val
TextAppearance_AppCompat_Tooltip
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Menu
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Subtitle
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Title
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Subtitle
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Title
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_Button
:
Int
static
val
TextAppearance_AppCompat_Widget_Button_Borderless_Colored
:
Int
static
val
TextAppearance_AppCompat_Widget_Button_Colored
:
Int
static
val
TextAppearance_AppCompat_Widget_Button_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_DropDownItem
:
Int
static
val
TextAppearance_AppCompat_Widget_PopupMenu_Header
:
Int
static
val
TextAppearance_AppCompat_Widget_PopupMenu_Large
:
Int
static
val
TextAppearance_AppCompat_Widget_PopupMenu_Small
:
Int
static
val
TextAppearance_AppCompat_Widget_Switch
:
Int
static
val
TextAppearance_AppCompat_Widget_TextView_SpinnerItem
:
Int
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
TextAppearance_Widget_AppCompat_ExpandedMenu_Item
:
Int
static
val
TextAppearance_Widget_AppCompat_Toolbar_Subtitle
:
Int
static
val
TextAppearance_Widget_AppCompat_Toolbar_Title
:
Int
static
val
ThemeOverlay_AppCompat
:
Int
static
val
ThemeOverlay_AppCompat_ActionBar
:
Int
static
val
ThemeOverlay_AppCompat_Dark
:
Int
static
val
ThemeOverlay_AppCompat_Dark_ActionBar
:
Int
static
val
ThemeOverlay_AppCompat_Dialog
:
Int
static
val
ThemeOverlay_AppCompat_Dialog_Alert
:
Int
static
val
ThemeOverlay_AppCompat_Light
:
Int
static
val
Theme_AppCompat
:
Int
static
val
Theme_AppCompat_CompactMenu
:
Int
static
val
Theme_AppCompat_DayNight
:
Int
static
val
Theme_AppCompat_DayNight_DarkActionBar
:
Int
static
val
Theme_AppCompat_DayNight_Dialog
:
Int
static
val
Theme_AppCompat_DayNight_DialogWhenLarge
:
Int
static
val
Theme_AppCompat_DayNight_Dialog_Alert
:
Int
static
val
Theme_AppCompat_DayNight_Dialog_MinWidth
:
Int
static
val
Theme_AppCompat_DayNight_NoActionBar
:
Int
static
val
Theme_AppCompat_Dialog
:
Int
static
val
Theme_AppCompat_DialogWhenLarge
:
Int
static
val
Theme_AppCompat_Dialog_Alert
:
Int
static
val
Theme_AppCompat_Dialog_MinWidth
:
Int
static
val
Theme_AppCompat_Light
:
Int
static
val
Theme_AppCompat_Light_DarkActionBar
:
Int
static
val
Theme_AppCompat_Light_Dialog
:
Int
static
val
Theme_AppCompat_Light_DialogWhenLarge
:
Int
static
val
Theme_AppCompat_Light_Dialog_Alert
:
Int
static
val
Theme_AppCompat_Light_Dialog_MinWidth
:
Int
static
val
Theme_AppCompat_Light_NoActionBar
:
Int
static
val
Theme_AppCompat_NoActionBar
:
Int
static
val
Widget_AppCompat_ActionBar
:
Int
static
val
Widget_AppCompat_ActionBar_Solid
:
Int
static
val
Widget_AppCompat_ActionBar_TabBar
:
Int
static
val
Widget_AppCompat_ActionBar_TabText
:
Int
static
val
Widget_AppCompat_ActionBar_TabView
:
Int
static
val
Widget_AppCompat_ActionButton
:
Int
static
val
Widget_AppCompat_ActionButton_CloseMode
:
Int
static
val
Widget_AppCompat_ActionButton_Overflow
:
Int
static
val
Widget_AppCompat_ActionMode
:
Int
static
val
Widget_AppCompat_ActivityChooserView
:
Int
static
val
Widget_AppCompat_AutoCompleteTextView
:
Int
static
val
Widget_AppCompat_Button
:
Int
static
val
Widget_AppCompat_ButtonBar
:
Int
static
val
Widget_AppCompat_ButtonBar_AlertDialog
:
Int
static
val
Widget_AppCompat_Button_Borderless
:
Int
static
val
Widget_AppCompat_Button_Borderless_Colored
:
Int
static
val
Widget_AppCompat_Button_ButtonBar_AlertDialog
:
Int
static
val
Widget_AppCompat_Button_Colored
:
Int
static
val
Widget_AppCompat_Button_Small
:
Int
static
val
Widget_AppCompat_CompoundButton_CheckBox
:
Int
static
val
Widget_AppCompat_CompoundButton_RadioButton
:
Int
static
val
Widget_AppCompat_CompoundButton_Switch
:
Int
static
val
Widget_AppCompat_DrawerArrowToggle
:
Int
static
val
Widget_AppCompat_DropDownItem_Spinner
:
Int
static
val
Widget_AppCompat_EditText
:
Int
static
val
Widget_AppCompat_ImageButton
:
Int
static
val
Widget_AppCompat_Light_ActionBar
:
Int
static
val
Widget_AppCompat_Light_ActionBar_Solid
:
Int
static
val
Widget_AppCompat_Light_ActionBar_Solid_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabBar
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabBar_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabText
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabText_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabView
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabView_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionButton
:
Int
static
val
Widget_AppCompat_Light_ActionButton_CloseMode
:
Int
static
val
Widget_AppCompat_Light_ActionButton_Overflow
:
Int
static
val
Widget_AppCompat_Light_ActionMode_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActivityChooserView
:
Int
static
val
Widget_AppCompat_Light_AutoCompleteTextView
:
Int
static
val
Widget_AppCompat_Light_DropDownItem_Spinner
:
Int
static
val
Widget_AppCompat_Light_ListPopupWindow
:
Int
static
val
Widget_AppCompat_Light_ListView_DropDown
:
Int
static
val
Widget_AppCompat_Light_PopupMenu
:
Int
static
val
Widget_AppCompat_Light_PopupMenu_Overflow
:
Int
static
val
Widget_AppCompat_Light_SearchView
:
Int
static
val
Widget_AppCompat_Light_Spinner_DropDown_ActionBar
:
Int
static
val
Widget_AppCompat_ListMenuView
:
Int
static
val
Widget_AppCompat_ListPopupWindow
:
Int
static
val
Widget_AppCompat_ListView
:
Int
static
val
Widget_AppCompat_ListView_DropDown
:
Int
static
val
Widget_AppCompat_ListView_Menu
:
Int
static
val
Widget_AppCompat_PopupMenu
:
Int
static
val
Widget_AppCompat_PopupMenu_Overflow
:
Int
static
val
Widget_AppCompat_PopupWindow
:
Int
static
val
Widget_AppCompat_ProgressBar
:
Int
static
val
Widget_AppCompat_ProgressBar_Horizontal
:
Int
static
val
Widget_AppCompat_RatingBar
:
Int
static
val
Widget_AppCompat_RatingBar_Indicator
:
Int
static
val
Widget_AppCompat_RatingBar_Small
:
Int
static
val
Widget_AppCompat_SearchView
:
Int
static
val
Widget_AppCompat_SearchView_ActionBar
:
Int
static
val
Widget_AppCompat_SeekBar
:
Int
static
val
Widget_AppCompat_SeekBar_Discrete
:
Int
static
val
Widget_AppCompat_Spinner
:
Int
static
val
Widget_AppCompat_Spinner_DropDown
:
Int
static
val
Widget_AppCompat_Spinner_DropDown_ActionBar
:
Int
static
val
Widget_AppCompat_Spinner_Underlined
:
Int
static
val
Widget_AppCompat_TextView_SpinnerItem
:
Int
static
val
Widget_AppCompat_Toolbar
:
Int
static
val
Widget_AppCompat_Toolbar_Button_Navigation
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
static
val
Widget_Support_CoordinatorLayout
:
Int
class
styleable
Module Contents
static
val
ActionBar
:
IntArray
static
val
ActionBarLayout
:
IntArray
static
val
ActionBarLayout_android_layout_gravity
:
Int
static
val
ActionBar_background
:
Int
static
val
ActionBar_backgroundSplit
:
Int
static
val
ActionBar_backgroundStacked
:
Int
static
val
ActionBar_contentInsetEnd
:
Int
static
val
ActionBar_contentInsetEndWithActions
:
Int
static
val
ActionBar_contentInsetLeft
:
Int
static
val
ActionBar_contentInsetRight
:
Int
static
val
ActionBar_contentInsetStart
:
Int
static
val
ActionBar_contentInsetStartWithNavigation
:
Int
static
val
ActionBar_customNavigationLayout
:
Int
static
val
ActionBar_displayOptions
:
Int
static
val
ActionBar_divider
:
Int
static
val
ActionBar_elevation
:
Int
static
val
ActionBar_height
:
Int
static
val
ActionBar_hideOnContentScroll
:
Int
static
val
ActionBar_homeAsUpIndicator
:
Int
static
val
ActionBar_homeLayout
:
Int
static
val
ActionBar_icon
:
Int
static
val
ActionBar_indeterminateProgressStyle
:
Int
static
val
ActionBar_itemPadding
:
Int
static
val
ActionBar_logo
:
Int
static
val
ActionBar_navigationMode
:
Int
static
val
ActionBar_popupTheme
:
Int
static
val
ActionBar_progressBarPadding
:
Int
static
val
ActionBar_progressBarStyle
:
Int
static
val
ActionBar_subtitle
:
Int
static
val
ActionBar_subtitleTextStyle
:
Int
static
val
ActionBar_title
:
Int
static
val
ActionBar_titleTextStyle
:
Int
static
val
ActionMenuItemView
:
IntArray
static
val
ActionMenuItemView_android_minWidth
:
Int
static
val
ActionMenuView
:
IntArray
static
val
ActionMode
:
IntArray
static
val
ActionMode_background
:
Int
static
val
ActionMode_backgroundSplit
:
Int
static
val
ActionMode_closeItemLayout
:
Int
static
val
ActionMode_height
:
Int
static
val
ActionMode_subtitleTextStyle
:
Int
static
val
ActionMode_titleTextStyle
:
Int
static
val
ActivityChooserView
:
IntArray
static
val
ActivityChooserView_expandActivityOverflowButtonDrawable
:
Int
static
val
ActivityChooserView_initialActivityCount
:
Int
static
val
AlertDialog
:
IntArray
static
val
AlertDialog_android_layout
:
Int
static
val
AlertDialog_buttonIconDimen
:
Int
static
val
AlertDialog_buttonPanelSideLayout
:
Int
static
val
AlertDialog_listItemLayout
:
Int
static
val
AlertDialog_listLayout
:
Int
static
val
AlertDialog_multiChoiceItemLayout
:
Int
static
val
AlertDialog_showTitle
:
Int
static
val
AlertDialog_singleChoiceItemLayout
:
Int
static
val
AnimatedStateListDrawableCompat
:
IntArray
static
val
AnimatedStateListDrawableCompat_android_constantSize
:
Int
static
val
AnimatedStateListDrawableCompat_android_dither
:
Int
static
val
AnimatedStateListDrawableCompat_android_enterFadeDuration
:
Int
static
val
AnimatedStateListDrawableCompat_android_exitFadeDuration
:
Int
static
val
AnimatedStateListDrawableCompat_android_variablePadding
:
Int
static
val
AnimatedStateListDrawableCompat_android_visible
:
Int
static
val
AnimatedStateListDrawableItem
:
IntArray
static
val
AnimatedStateListDrawableItem_android_drawable
:
Int
static
val
AnimatedStateListDrawableItem_android_id
:
Int
static
val
AnimatedStateListDrawableTransition
:
IntArray
static
val
AnimatedStateListDrawableTransition_android_drawable
:
Int
static
val
AnimatedStateListDrawableTransition_android_fromId
:
Int
static
val
AnimatedStateListDrawableTransition_android_reversible
:
Int
static
val
AnimatedStateListDrawableTransition_android_toId
:
Int
static
val
AppCompatImageView
:
IntArray
static
val
AppCompatImageView_android_src
:
Int
static
val
AppCompatImageView_srcCompat
:
Int
static
val
AppCompatImageView_tint
:
Int
static
val
AppCompatImageView_tintMode
:
Int
static
val
AppCompatSeekBar
:
IntArray
static
val
AppCompatSeekBar_android_thumb
:
Int
static
val
AppCompatSeekBar_tickMark
:
Int
static
val
AppCompatSeekBar_tickMarkTint
:
Int
static
val
AppCompatSeekBar_tickMarkTintMode
:
Int
static
val
AppCompatTextHelper
:
IntArray
static
val
AppCompatTextHelper_android_drawableBottom
:
Int
static
val
AppCompatTextHelper_android_drawableEnd
:
Int
static
val
AppCompatTextHelper_android_drawableLeft
:
Int
static
val
AppCompatTextHelper_android_drawableRight
:
Int
static
val
AppCompatTextHelper_android_drawableStart
:
Int
static
val
AppCompatTextHelper_android_drawableTop
:
Int
static
val
AppCompatTextHelper_android_textAppearance
:
Int
static
val
AppCompatTextView
:
IntArray
static
val
AppCompatTextView_android_textAppearance
:
Int
static
val
AppCompatTextView_autoSizeMaxTextSize
:
Int
static
val
AppCompatTextView_autoSizeMinTextSize
:
Int
static
val
AppCompatTextView_autoSizePresetSizes
:
Int
static
val
AppCompatTextView_autoSizeStepGranularity
:
Int
static
val
AppCompatTextView_autoSizeTextType
:
Int
static
val
AppCompatTextView_firstBaselineToTopHeight
:
Int
static
val
AppCompatTextView_fontFamily
:
Int
static
val
AppCompatTextView_lastBaselineToBottomHeight
:
Int
static
val
AppCompatTextView_lineHeight
:
Int
static
val
AppCompatTextView_textAllCaps
:
Int
static
val
AppCompatTheme
:
IntArray
static
val
AppCompatTheme_actionBarDivider
:
Int
static
val
AppCompatTheme_actionBarItemBackground
:
Int
static
val
AppCompatTheme_actionBarPopupTheme
:
Int
static
val
AppCompatTheme_actionBarSize
:
Int
static
val
AppCompatTheme_actionBarSplitStyle
:
Int
static
val
AppCompatTheme_actionBarStyle
:
Int
static
val
AppCompatTheme_actionBarTabBarStyle
:
Int
static
val
AppCompatTheme_actionBarTabStyle
:
Int
static
val
AppCompatTheme_actionBarTabTextStyle
:
Int
static
val
AppCompatTheme_actionBarTheme
:
Int
static
val
AppCompatTheme_actionBarWidgetTheme
:
Int
static
val
AppCompatTheme_actionButtonStyle
:
Int
static
val
AppCompatTheme_actionDropDownStyle
:
Int
static
val
AppCompatTheme_actionMenuTextAppearance
:
Int
static
val
AppCompatTheme_actionMenuTextColor
:
Int
static
val
AppCompatTheme_actionModeBackground
:
Int
static
val
AppCompatTheme_actionModeCloseButtonStyle
:
Int
static
val
AppCompatTheme_actionModeCloseDrawable
:
Int
static
val
AppCompatTheme_actionModeCopyDrawable
:
Int
static
val
AppCompatTheme_actionModeCutDrawable
:
Int
static
val
AppCompatTheme_actionModeFindDrawable
:
Int
static
val
AppCompatTheme_actionModePasteDrawable
:
Int
static
val
AppCompatTheme_actionModePopupWindowStyle
:
Int
static
val
AppCompatTheme_actionModeSelectAllDrawable
:
Int
static
val
AppCompatTheme_actionModeShareDrawable
:
Int
static
val
AppCompatTheme_actionModeSplitBackground
:
Int
static
val
AppCompatTheme_actionModeStyle
:
Int
static
val
AppCompatTheme_actionModeWebSearchDrawable
:
Int
static
val
AppCompatTheme_actionOverflowButtonStyle
:
Int
static
val
AppCompatTheme_actionOverflowMenuStyle
:
Int
static
val
AppCompatTheme_activityChooserViewStyle
:
Int
static
val
AppCompatTheme_alertDialogButtonGroupStyle
:
Int
static
val
AppCompatTheme_alertDialogCenterButtons
:
Int
static
val
AppCompatTheme_alertDialogStyle
:
Int
static
val
AppCompatTheme_alertDialogTheme
:
Int
static
val
AppCompatTheme_android_windowAnimationStyle
:
Int
static
val
AppCompatTheme_android_windowIsFloating
:
Int
static
val
AppCompatTheme_autoCompleteTextViewStyle
:
Int
static
val
AppCompatTheme_borderlessButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarNegativeButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarNeutralButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarPositiveButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarStyle
:
Int
static
val
AppCompatTheme_buttonStyle
:
Int
static
val
AppCompatTheme_buttonStyleSmall
:
Int
static
val
AppCompatTheme_checkboxStyle
:
Int
static
val
AppCompatTheme_checkedTextViewStyle
:
Int
static
val
AppCompatTheme_colorAccent
:
Int
static
val
AppCompatTheme_colorBackgroundFloating
:
Int
static
val
AppCompatTheme_colorButtonNormal
:
Int
static
val
AppCompatTheme_colorControlActivated
:
Int
static
val
AppCompatTheme_colorControlHighlight
:
Int
static
val
AppCompatTheme_colorControlNormal
:
Int
static
val
AppCompatTheme_colorError
:
Int
static
val
AppCompatTheme_colorPrimary
:
Int
static
val
AppCompatTheme_colorPrimaryDark
:
Int
static
val
AppCompatTheme_colorSwitchThumbNormal
:
Int
static
val
AppCompatTheme_controlBackground
:
Int
static
val
AppCompatTheme_dialogCornerRadius
:
Int
static
val
AppCompatTheme_dialogPreferredPadding
:
Int
static
val
AppCompatTheme_dialogTheme
:
Int
static
val
AppCompatTheme_dividerHorizontal
:
Int
static
val
AppCompatTheme_dividerVertical
:
Int
static
val
AppCompatTheme_dropDownListViewStyle
:
Int
static
val
AppCompatTheme_dropdownListPreferredItemHeight
:
Int
static
val
AppCompatTheme_editTextBackground
:
Int
static
val
AppCompatTheme_editTextColor
:
Int
static
val
AppCompatTheme_editTextStyle
:
Int
static
val
AppCompatTheme_homeAsUpIndicator
:
Int
static
val
AppCompatTheme_imageButtonStyle
:
Int
static
val
AppCompatTheme_listChoiceBackgroundIndicator
:
Int
static
val
AppCompatTheme_listDividerAlertDialog
:
Int
static
val
AppCompatTheme_listMenuViewStyle
:
Int
static
val
AppCompatTheme_listPopupWindowStyle
:
Int
static
val
AppCompatTheme_listPreferredItemHeight
:
Int
static
val
AppCompatTheme_listPreferredItemHeightLarge
:
Int
static
val
AppCompatTheme_listPreferredItemHeightSmall
:
Int
static
val
AppCompatTheme_listPreferredItemPaddingLeft
:
Int
static
val
AppCompatTheme_listPreferredItemPaddingRight
:
Int
static
val
AppCompatTheme_panelBackground
:
Int
static
val
AppCompatTheme_panelMenuListTheme
:
Int
static
val
AppCompatTheme_panelMenuListWidth
:
Int
static
val
AppCompatTheme_popupMenuStyle
:
Int
static
val
AppCompatTheme_popupWindowStyle
:
Int
static
val
AppCompatTheme_radioButtonStyle
:
Int
static
val
AppCompatTheme_ratingBarStyle
:
Int
static
val
AppCompatTheme_ratingBarStyleIndicator
:
Int
static
val
AppCompatTheme_ratingBarStyleSmall
:
Int
static
val
AppCompatTheme_searchViewStyle
:
Int
static
val
AppCompatTheme_seekBarStyle
:
Int
static
val
AppCompatTheme_selectableItemBackground
:
Int
static
val
AppCompatTheme_selectableItemBackgroundBorderless
:
Int
static
val
AppCompatTheme_spinnerDropDownItemStyle
:
Int
static
val
AppCompatTheme_spinnerStyle
:
Int
static
val
AppCompatTheme_switchStyle
:
Int
static
val
AppCompatTheme_textAppearanceLargePopupMenu
:
Int
static
val
AppCompatTheme_textAppearanceListItem
:
Int
static
val
AppCompatTheme_textAppearanceListItemSecondary
:
Int
static
val
AppCompatTheme_textAppearanceListItemSmall
:
Int
static
val
AppCompatTheme_textAppearancePopupMenuHeader
:
Int
static
val
AppCompatTheme_textAppearanceSearchResultSubtitle
:
Int
static
val
AppCompatTheme_textAppearanceSearchResultTitle
:
Int
static
val
AppCompatTheme_textAppearanceSmallPopupMenu
:
Int
static
val
AppCompatTheme_textColorAlertDialogListItem
:
Int
static
val
AppCompatTheme_textColorSearchUrl
:
Int
static
val
AppCompatTheme_toolbarNavigationButtonStyle
:
Int
static
val
AppCompatTheme_toolbarStyle
:
Int
static
val
AppCompatTheme_tooltipForegroundColor
:
Int
static
val
AppCompatTheme_tooltipFrameBackground
:
Int
static
val
AppCompatTheme_viewInflaterClass
:
Int
static
val
AppCompatTheme_windowActionBar
:
Int
static
val
AppCompatTheme_windowActionBarOverlay
:
Int
static
val
AppCompatTheme_windowActionModeOverlay
:
Int
static
val
AppCompatTheme_windowFixedHeightMajor
:
Int
static
val
AppCompatTheme_windowFixedHeightMinor
:
Int
static
val
AppCompatTheme_windowFixedWidthMajor
:
Int
static
val
AppCompatTheme_windowFixedWidthMinor
:
Int
static
val
AppCompatTheme_windowMinWidthMajor
:
Int
static
val
AppCompatTheme_windowMinWidthMinor
:
Int
static
val
AppCompatTheme_windowNoTitle
:
Int
static
val
ButtonBarLayout
:
IntArray
static
val
ButtonBarLayout_allowStacking
:
Int
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
CompoundButton
:
IntArray
static
val
CompoundButton_android_button
:
Int
static
val
CompoundButton_buttonTint
:
Int
static
val
CompoundButton_buttonTintMode
:
Int
static
val
CoordinatorLayout
:
IntArray
static
val
CoordinatorLayout_Layout
:
IntArray
static
val
CoordinatorLayout_Layout_android_layout_gravity
:
Int
static
val
CoordinatorLayout_Layout_layout_anchor
:
Int
static
val
CoordinatorLayout_Layout_layout_anchorGravity
:
Int
static
val
CoordinatorLayout_Layout_layout_behavior
:
Int
static
val
CoordinatorLayout_Layout_layout_dodgeInsetEdges
:
Int
static
val
CoordinatorLayout_Layout_layout_insetEdge
:
Int
static
val
CoordinatorLayout_Layout_layout_keyline
:
Int
static
val
CoordinatorLayout_keylines
:
Int
static
val
CoordinatorLayout_statusBarBackground
:
Int
static
val
DrawerArrowToggle
:
IntArray
static
val
DrawerArrowToggle_arrowHeadLength
:
Int
static
val
DrawerArrowToggle_arrowShaftLength
:
Int
static
val
DrawerArrowToggle_barLength
:
Int
static
val
DrawerArrowToggle_color
:
Int
static
val
DrawerArrowToggle_drawableSize
:
Int
static
val
DrawerArrowToggle_gapBetweenBars
:
Int
static
val
DrawerArrowToggle_spinBars
:
Int
static
val
DrawerArrowToggle_thickness
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
static
val
LinearLayoutCompat
:
IntArray
static
val
LinearLayoutCompat_Layout
:
IntArray
static
val
LinearLayoutCompat_Layout_android_layout_gravity
:
Int
static
val
LinearLayoutCompat_Layout_android_layout_height
:
Int
static
val
LinearLayoutCompat_Layout_android_layout_weight
:
Int
static
val
LinearLayoutCompat_Layout_android_layout_width
:
Int
static
val
LinearLayoutCompat_android_baselineAligned
:
Int
static
val
LinearLayoutCompat_android_baselineAlignedChildIndex
:
Int
static
val
LinearLayoutCompat_android_gravity
:
Int
static
val
LinearLayoutCompat_android_orientation
:
Int
static
val
LinearLayoutCompat_android_weightSum
:
Int
static
val
LinearLayoutCompat_divider
:
Int
static
val
LinearLayoutCompat_dividerPadding
:
Int
static
val
LinearLayoutCompat_measureWithLargestChild
:
Int
static
val
LinearLayoutCompat_showDividers
:
Int
static
val
ListPopupWindow
:
IntArray
static
val
ListPopupWindow_android_dropDownHorizontalOffset
:
Int
static
val
ListPopupWindow_android_dropDownVerticalOffset
:
Int
static
val
MenuGroup
:
IntArray
static
val
MenuGroup_android_checkableBehavior
:
Int
static
val
MenuGroup_android_enabled
:
Int
static
val
MenuGroup_android_id
:
Int
static
val
MenuGroup_android_menuCategory
:
Int
static
val
MenuGroup_android_orderInCategory
:
Int
static
val
MenuGroup_android_visible
:
Int
static
val
MenuItem
:
IntArray
static
val
MenuItem_actionLayout
:
Int
static
val
MenuItem_actionProviderClass
:
Int
static
val
MenuItem_actionViewClass
:
Int
static
val
MenuItem_alphabeticModifiers
:
Int
static
val
MenuItem_android_alphabeticShortcut
:
Int
static
val
MenuItem_android_checkable
:
Int
static
val
MenuItem_android_checked
:
Int
static
val
MenuItem_android_enabled
:
Int
static
val
MenuItem_android_icon
:
Int
static
val
MenuItem_android_id
:
Int
static
val
MenuItem_android_menuCategory
:
Int
static
val
MenuItem_android_numericShortcut
:
Int
static
val
MenuItem_android_onClick
:
Int
static
val
MenuItem_android_orderInCategory
:
Int
static
val
MenuItem_android_title
:
Int
static
val
MenuItem_android_titleCondensed
:
Int
static
val
MenuItem_android_visible
:
Int
static
val
MenuItem_contentDescription
:
Int
static
val
MenuItem_iconTint
:
Int
static
val
MenuItem_iconTintMode
:
Int
static
val
MenuItem_numericModifiers
:
Int
static
val
MenuItem_showAsAction
:
Int
static
val
MenuItem_tooltipText
:
Int
static
val
MenuView
:
IntArray
static
val
MenuView_android_headerBackground
:
Int
static
val
MenuView_android_horizontalDivider
:
Int
static
val
MenuView_android_itemBackground
:
Int
static
val
MenuView_android_itemIconDisabledAlpha
:
Int
static
val
MenuView_android_itemTextAppearance
:
Int
static
val
MenuView_android_verticalDivider
:
Int
static
val
MenuView_android_windowAnimationStyle
:
Int
static
val
MenuView_preserveIconSpacing
:
Int
static
val
MenuView_subMenuArrow
:
Int
static
val
PopupWindow
:
IntArray
static
val
PopupWindowBackgroundState
:
IntArray
static
val
PopupWindowBackgroundState_state_above_anchor
:
Int
static
val
PopupWindow_android_popupAnimationStyle
:
Int
static
val
PopupWindow_android_popupBackground
:
Int
static
val
PopupWindow_overlapAnchor
:
Int
static
val
RecycleListView
:
IntArray
static
val
RecycleListView_paddingBottomNoButtons
:
Int
static
val
RecycleListView_paddingTopNoTitle
:
Int
static
val
SearchView
:
IntArray
static
val
SearchView_android_focusable
:
Int
static
val
SearchView_android_imeOptions
:
Int
static
val
SearchView_android_inputType
:
Int
static
val
SearchView_android_maxWidth
:
Int
static
val
SearchView_closeIcon
:
Int
static
val
SearchView_commitIcon
:
Int
static
val
SearchView_defaultQueryHint
:
Int
static
val
SearchView_goIcon
:
Int
static
val
SearchView_iconifiedByDefault
:
Int
static
val
SearchView_layout
:
Int
static
val
SearchView_queryBackground
:
Int
static
val
SearchView_queryHint
:
Int
static
val
SearchView_searchHintIcon
:
Int
static
val
SearchView_searchIcon
:
Int
static
val
SearchView_submitBackground
:
Int
static
val
SearchView_suggestionRowLayout
:
Int
static
val
SearchView_voiceIcon
:
Int
static
val
Spinner
:
IntArray
static
val
Spinner_android_dropDownWidth
:
Int
static
val
Spinner_android_entries
:
Int
static
val
Spinner_android_popupBackground
:
Int
static
val
Spinner_android_prompt
:
Int
static
val
Spinner_popupTheme
:
Int
static
val
StateListDrawable
:
IntArray
static
val
StateListDrawableItem
:
IntArray
static
val
StateListDrawableItem_android_drawable
:
Int
static
val
StateListDrawable_android_constantSize
:
Int
static
val
StateListDrawable_android_dither
:
Int
static
val
StateListDrawable_android_enterFadeDuration
:
Int
static
val
StateListDrawable_android_exitFadeDuration
:
Int
static
val
StateListDrawable_android_variablePadding
:
Int
static
val
StateListDrawable_android_visible
:
Int
static
val
SwitchCompat
:
IntArray
static
val
SwitchCompat_android_textOff
:
Int
static
val
SwitchCompat_android_textOn
:
Int
static
val
SwitchCompat_android_thumb
:
Int
static
val
SwitchCompat_showText
:
Int
static
val
SwitchCompat_splitTrack
:
Int
static
val
SwitchCompat_switchMinWidth
:
Int
static
val
SwitchCompat_switchPadding
:
Int
static
val
SwitchCompat_switchTextAppearance
:
Int
static
val
SwitchCompat_thumbTextPadding
:
Int
static
val
SwitchCompat_thumbTint
:
Int
static
val
SwitchCompat_thumbTintMode
:
Int
static
val
SwitchCompat_track
:
Int
static
val
SwitchCompat_trackTint
:
Int
static
val
SwitchCompat_trackTintMode
:
Int
static
val
TextAppearance
:
IntArray
static
val
TextAppearance_android_fontFamily
:
Int
static
val
TextAppearance_android_shadowColor
:
Int
static
val
TextAppearance_android_shadowDx
:
Int
static
val
TextAppearance_android_shadowDy
:
Int
static
val
TextAppearance_android_shadowRadius
:
Int
static
val
TextAppearance_android_textColor
:
Int
static
val
TextAppearance_android_textColorHint
:
Int
static
val
TextAppearance_android_textColorLink
:
Int
static
val
TextAppearance_android_textSize
:
Int
static
val
TextAppearance_android_textStyle
:
Int
static
val
TextAppearance_android_typeface
:
Int
static
val
TextAppearance_fontFamily
:
Int
static
val
TextAppearance_textAllCaps
:
Int
static
val
Toolbar
:
IntArray
static
val
Toolbar_android_gravity
:
Int
static
val
Toolbar_android_minHeight
:
Int
static
val
Toolbar_buttonGravity
:
Int
static
val
Toolbar_collapseContentDescription
:
Int
static
val
Toolbar_collapseIcon
:
Int
static
val
Toolbar_contentInsetEnd
:
Int
static
val
Toolbar_contentInsetEndWithActions
:
Int
static
val
Toolbar_contentInsetLeft
:
Int
static
val
Toolbar_contentInsetRight
:
Int
static
val
Toolbar_contentInsetStart
:
Int
static
val
Toolbar_contentInsetStartWithNavigation
:
Int
static
val
Toolbar_logo
:
Int
static
val
Toolbar_logoDescription
:
Int
static
val
Toolbar_maxButtonHeight
:
Int
static
val
Toolbar_navigationContentDescription
:
Int
static
val
Toolbar_navigationIcon
:
Int
static
val
Toolbar_popupTheme
:
Int
static
val
Toolbar_subtitle
:
Int
static
val
Toolbar_subtitleTextAppearance
:
Int
static
val
Toolbar_subtitleTextColor
:
Int
static
val
Toolbar_title
:
Int
static
val
Toolbar_titleMargin
:
Int
static
val
Toolbar_titleMarginBottom
:
Int
static
val
Toolbar_titleMarginEnd
:
Int
static
val
Toolbar_titleMarginStart
:
Int
static
val
Toolbar_titleMarginTop
:
Int
static
val
Toolbar_titleMargins
:
Int
static
val
Toolbar_titleTextAppearance
:
Int
static
val
Toolbar_titleTextColor
:
Int
static
val
View
:
IntArray
static
val
ViewBackgroundHelper
:
IntArray
static
val
ViewBackgroundHelper_android_background
:
Int
static
val
ViewBackgroundHelper_backgroundTint
:
Int
static
val
ViewBackgroundHelper_backgroundTintMode
:
Int
static
val
ViewStubCompat
:
IntArray
static
val
ViewStubCompat_android_id
:
Int
static
val
ViewStubCompat_android_inflatedId
:
Int
static
val
ViewStubCompat_android_layout
:
Int
static
val
View_android_focusable
:
Int
static
val
View_android_theme
:
Int
static
val
View_paddingEnd
:
Int
static
val
View_paddingStart
:
Int
static
val
View_theme
:
Int
package
android.support.v7.cardview
Module Contents
class
R
Module Contents
class
attr
Module Contents
static
val
cardBackgroundColor
:
Int
static
val
cardCornerRadius
:
Int
static
val
cardElevation
:
Int
static
val
cardMaxElevation
:
Int
static
val
cardPreventCornerOverlap
:
Int
static
val
cardUseCompatPadding
:
Int
static
val
cardViewStyle
:
Int
static
val
contentPadding
:
Int
static
val
contentPaddingBottom
:
Int
static
val
contentPaddingLeft
:
Int
static
val
contentPaddingRight
:
Int
static
val
contentPaddingTop
:
Int
class
color
Module Contents
static
val
cardview_dark_background
:
Int
static
val
cardview_light_background
:
Int
static
val
cardview_shadow_end_color
:
Int
static
val
cardview_shadow_start_color
:
Int
class
dimen
Module Contents
static
val
cardview_compat_inset_shadow
:
Int
static
val
cardview_default_elevation
:
Int
static
val
cardview_default_radius
:
Int
class
style
Module Contents
static
val
Base_CardView
:
Int
static
val
CardView
:
Int
static
val
CardView_Dark
:
Int
static
val
CardView_Light
:
Int
class
styleable
Module Contents
static
val
CardView
:
IntArray
static
val
CardView_android_minHeight
:
Int
static
val
CardView_android_minWidth
:
Int
static
val
CardView_cardBackgroundColor
:
Int
static
val
CardView_cardCornerRadius
:
Int
static
val
CardView_cardElevation
:
Int
static
val
CardView_cardMaxElevation
:
Int
static
val
CardView_cardPreventCornerOverlap
:
Int
static
val
CardView_cardUseCompatPadding
:
Int
static
val
CardView_contentPadding
:
Int
static
val
CardView_contentPaddingBottom
:
Int
static
val
CardView_contentPaddingLeft
:
Int
static
val
CardView_contentPaddingRight
:
Int
static
val
CardView_contentPaddingTop
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
cardBackgroundColor
:
Int
static
val
cardCornerRadius
:
Int
static
val
cardElevation
:
Int
static
val
cardMaxElevation
:
Int
static
val
cardPreventCornerOverlap
:
Int
static
val
cardUseCompatPadding
:
Int
static
val
cardViewStyle
:
Int
static
val
contentPadding
:
Int
static
val
contentPaddingBottom
:
Int
static
val
contentPaddingLeft
:
Int
static
val
contentPaddingRight
:
Int
static
val
contentPaddingTop
:
Int
class
color
Module Contents
static
val
cardview_dark_background
:
Int
static
val
cardview_light_background
:
Int
static
val
cardview_shadow_end_color
:
Int
static
val
cardview_shadow_start_color
:
Int
class
dimen
Module Contents
static
val
cardview_compat_inset_shadow
:
Int
static
val
cardview_default_elevation
:
Int
static
val
cardview_default_radius
:
Int
class
style
Module Contents
static
val
Base_CardView
:
Int
static
val
CardView
:
Int
static
val
CardView_Dark
:
Int
static
val
CardView_Light
:
Int
class
styleable
Module Contents
static
val
CardView
:
IntArray
static
val
CardView_android_minHeight
:
Int
static
val
CardView_android_minWidth
:
Int
static
val
CardView_cardBackgroundColor
:
Int
static
val
CardView_cardCornerRadius
:
Int
static
val
CardView_cardElevation
:
Int
static
val
CardView_cardMaxElevation
:
Int
static
val
CardView_cardPreventCornerOverlap
:
Int
static
val
CardView_cardUseCompatPadding
:
Int
static
val
CardView_contentPadding
:
Int
static
val
CardView_contentPaddingBottom
:
Int
static
val
CardView_contentPaddingLeft
:
Int
static
val
CardView_contentPaddingRight
:
Int
static
val
CardView_contentPaddingTop
:
Int
package
android.support.v7.recyclerview
Module Contents
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
coordinatorLayoutStyle
:
Int
static
val
fastScrollEnabled
:
Int
static
val
fastScrollHorizontalThumbDrawable
:
Int
static
val
fastScrollHorizontalTrackDrawable
:
Int
static
val
fastScrollVerticalThumbDrawable
:
Int
static
val
fastScrollVerticalTrackDrawable
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
keylines
:
Int
static
val
layoutManager
:
Int
static
val
layout_anchor
:
Int
static
val
layout_anchorGravity
:
Int
static
val
layout_behavior
:
Int
static
val
layout_dodgeInsetEdges
:
Int
static
val
layout_insetEdge
:
Int
static
val
layout_keyline
:
Int
static
val
reverseLayout
:
Int
static
val
spanCount
:
Int
static
val
stackFromEnd
:
Int
static
val
statusBarBackground
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
fastscroll_default_thickness
:
Int
static
val
fastscroll_margin
:
Int
static
val
fastscroll_minimum_range
:
Int
static
val
item_touch_helper_max_drag_scroll_per_frame
:
Int
static
val
item_touch_helper_swipe_escape_max_velocity
:
Int
static
val
item_touch_helper_swipe_escape_velocity
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
bottom
:
Int
static
val
chronometer
:
Int
static
val
end
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
item_touch_helper_previous_elevation
:
Int
static
val
left
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
none
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
start
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
static
val
top
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
static
val
Widget_Support_CoordinatorLayout
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
CoordinatorLayout
:
IntArray
static
val
CoordinatorLayout_Layout
:
IntArray
static
val
CoordinatorLayout_Layout_android_layout_gravity
:
Int
static
val
CoordinatorLayout_Layout_layout_anchor
:
Int
static
val
CoordinatorLayout_Layout_layout_anchorGravity
:
Int
static
val
CoordinatorLayout_Layout_layout_behavior
:
Int
static
val
CoordinatorLayout_Layout_layout_dodgeInsetEdges
:
Int
static
val
CoordinatorLayout_Layout_layout_insetEdge
:
Int
static
val
CoordinatorLayout_Layout_layout_keyline
:
Int
static
val
CoordinatorLayout_keylines
:
Int
static
val
CoordinatorLayout_statusBarBackground
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
static
val
RecyclerView
:
IntArray
static
val
RecyclerView_android_descendantFocusability
:
Int
static
val
RecyclerView_android_orientation
:
Int
static
val
RecyclerView_fastScrollEnabled
:
Int
static
val
RecyclerView_fastScrollHorizontalThumbDrawable
:
Int
static
val
RecyclerView_fastScrollHorizontalTrackDrawable
:
Int
static
val
RecyclerView_fastScrollVerticalThumbDrawable
:
Int
static
val
RecyclerView_fastScrollVerticalTrackDrawable
:
Int
static
val
RecyclerView_layoutManager
:
Int
static
val
RecyclerView_reverseLayout
:
Int
static
val
RecyclerView_spanCount
:
Int
static
val
RecyclerView_stackFromEnd
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
coordinatorLayoutStyle
:
Int
static
val
fastScrollEnabled
:
Int
static
val
fastScrollHorizontalThumbDrawable
:
Int
static
val
fastScrollHorizontalTrackDrawable
:
Int
static
val
fastScrollVerticalThumbDrawable
:
Int
static
val
fastScrollVerticalTrackDrawable
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
keylines
:
Int
static
val
layoutManager
:
Int
static
val
layout_anchor
:
Int
static
val
layout_anchorGravity
:
Int
static
val
layout_behavior
:
Int
static
val
layout_dodgeInsetEdges
:
Int
static
val
layout_insetEdge
:
Int
static
val
layout_keyline
:
Int
static
val
reverseLayout
:
Int
static
val
spanCount
:
Int
static
val
stackFromEnd
:
Int
static
val
statusBarBackground
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
fastscroll_default_thickness
:
Int
static
val
fastscroll_margin
:
Int
static
val
fastscroll_minimum_range
:
Int
static
val
item_touch_helper_max_drag_scroll_per_frame
:
Int
static
val
item_touch_helper_swipe_escape_max_velocity
:
Int
static
val
item_touch_helper_swipe_escape_velocity
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
bottom
:
Int
static
val
chronometer
:
Int
static
val
end
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
item_touch_helper_previous_elevation
:
Int
static
val
left
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
none
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
start
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
static
val
top
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
static
val
Widget_Support_CoordinatorLayout
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
CoordinatorLayout
:
IntArray
static
val
CoordinatorLayout_Layout
:
IntArray
static
val
CoordinatorLayout_Layout_android_layout_gravity
:
Int
static
val
CoordinatorLayout_Layout_layout_anchor
:
Int
static
val
CoordinatorLayout_Layout_layout_anchorGravity
:
Int
static
val
CoordinatorLayout_Layout_layout_behavior
:
Int
static
val
CoordinatorLayout_Layout_layout_dodgeInsetEdges
:
Int
static
val
CoordinatorLayout_Layout_layout_insetEdge
:
Int
static
val
CoordinatorLayout_Layout_layout_keyline
:
Int
static
val
CoordinatorLayout_keylines
:
Int
static
val
CoordinatorLayout_statusBarBackground
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
static
val
RecyclerView
:
IntArray
static
val
RecyclerView_android_descendantFocusability
:
Int
static
val
RecyclerView_android_orientation
:
Int
static
val
RecyclerView_fastScrollEnabled
:
Int
static
val
RecyclerView_fastScrollHorizontalThumbDrawable
:
Int
static
val
RecyclerView_fastScrollHorizontalTrackDrawable
:
Int
static
val
RecyclerView_fastScrollVerticalThumbDrawable
:
Int
static
val
RecyclerView_fastScrollVerticalTrackDrawable
:
Int
static
val
RecyclerView_layoutManager
:
Int
static
val
RecyclerView_reverseLayout
:
Int
static
val
RecyclerView_spanCount
:
Int
static
val
RecyclerView_stackFromEnd
:
Int
package
android.support.v7.viewpager
Module Contents
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
class
R
Module Contents
class
attr
Module Contents
static
val
alpha
:
Int
static
val
font
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
ttcIndex
:
Int
class
color
Module Contents
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_light
:
Int
class
dimen
Module Contents
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
class
drawable
Module Contents
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
class
id
Module Contents
static
val
action_container
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
async
:
Int
static
val
blocking
:
Int
static
val
chronometer
:
Int
static
val
forever
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
info
:
Int
static
val
italic
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
time
:
Int
static
val
title
:
Int
class
integer
Module Contents
static
val
status_bar_notification_info_maxnum
:
Int
class
layout
Module Contents
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
class
string
Module Contents
static
val
status_bar_notification_info_overflow
:
Int
class
style
Module Contents
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
class
styleable
Module Contents
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
package
androidx.versionedparcelable
Module Contents
class
R
class
R
package
com.android.volley
Module Contents
class
R
class
R
package
com.jonasdevrient.citypinboard
Module Contents
class
BuildConfig
Module Contents
BuildConfig
(
)
static
val
APPLICATION_ID
:
String
static
val
BUILD_TYPE
:
String
static
val
DEBUG
:
Boolean
static
val
FLAVOR
:
String
static
val
VERSION_CODE
:
Int
static
val
VERSION_NAME
:
String
class
BuildConfig
Module Contents
BuildConfig
(
)
static
val
APPLICATION_ID
:
String
static
val
BUILD_TYPE
:
String
static
val
DEBUG
:
Boolean
static
val
FLAVOR
:
String
static
val
VERSION_CODE
:
Int
static
val
VERSION_NAME
:
String
class
MainActivity
:
AppCompatActivity
,
NavigationHost
Module Contents
MainActivity
(
)
lateinit
var
loginFragment
:
LoginFragment
fun
navigateTo
(
fragment
:
Fragment
,
addToBackstack
:
Boolean
)
:
Unit
protected
fun
onCreate
(
savedInstanceState
:
Bundle
?
)
:
Unit
interface
NavigationHost
Module Contents
abstract
fun
navigateTo
(
fragment
:
Fragment
,
addToBackstack
:
Boolean
)
:
Unit
class
R
Module Contents
R
(
)
class
anim
Module Contents
anim
(
)
static
val
abc_fade_in
:
Int
static
val
abc_fade_out
:
Int
static
val
abc_grow_fade_in_from_bottom
:
Int
static
val
abc_popup_enter
:
Int
static
val
abc_popup_exit
:
Int
static
val
abc_shrink_fade_out_from_bottom
:
Int
static
val
abc_slide_in_bottom
:
Int
static
val
abc_slide_in_top
:
Int
static
val
abc_slide_out_bottom
:
Int
static
val
abc_slide_out_top
:
Int
static
val
abc_tooltip_enter
:
Int
static
val
abc_tooltip_exit
:
Int
static
val
design_bottom_sheet_slide_in
:
Int
static
val
design_bottom_sheet_slide_out
:
Int
static
val
design_snackbar_in
:
Int
static
val
design_snackbar_out
:
Int
class
animator
Module Contents
animator
(
)
static
val
design_appbar_state_list_animator
:
Int
static
val
design_fab_hide_motion_spec
:
Int
static
val
design_fab_show_motion_spec
:
Int
static
val
mtrl_btn_state_list_anim
:
Int
static
val
mtrl_btn_unelevated_state_list_anim
:
Int
static
val
mtrl_chip_state_list_anim
:
Int
static
val
mtrl_fab_hide_motion_spec
:
Int
static
val
mtrl_fab_show_motion_spec
:
Int
static
val
mtrl_fab_transformation_sheet_collapse_spec
:
Int
static
val
mtrl_fab_transformation_sheet_expand_spec
:
Int
class
attr
Module Contents
attr
(
)
static
val
actionBarDivider
:
Int
static
val
actionBarItemBackground
:
Int
static
val
actionBarPopupTheme
:
Int
static
val
actionBarSize
:
Int
static
val
actionBarSplitStyle
:
Int
static
val
actionBarStyle
:
Int
static
val
actionBarTabBarStyle
:
Int
static
val
actionBarTabStyle
:
Int
static
val
actionBarTabTextStyle
:
Int
static
val
actionBarTheme
:
Int
static
val
actionBarWidgetTheme
:
Int
static
val
actionButtonStyle
:
Int
static
val
actionDropDownStyle
:
Int
static
val
actionLayout
:
Int
static
val
actionMenuTextAppearance
:
Int
static
val
actionMenuTextColor
:
Int
static
val
actionModeBackground
:
Int
static
val
actionModeCloseButtonStyle
:
Int
static
val
actionModeCloseDrawable
:
Int
static
val
actionModeCopyDrawable
:
Int
static
val
actionModeCutDrawable
:
Int
static
val
actionModeFindDrawable
:
Int
static
val
actionModePasteDrawable
:
Int
static
val
actionModePopupWindowStyle
:
Int
static
val
actionModeSelectAllDrawable
:
Int
static
val
actionModeShareDrawable
:
Int
static
val
actionModeSplitBackground
:
Int
static
val
actionModeStyle
:
Int
static
val
actionModeWebSearchDrawable
:
Int
static
val
actionOverflowButtonStyle
:
Int
static
val
actionOverflowMenuStyle
:
Int
static
val
actionProviderClass
:
Int
static
val
actionViewClass
:
Int
static
val
activityChooserViewStyle
:
Int
static
val
alertDialogButtonGroupStyle
:
Int
static
val
alertDialogCenterButtons
:
Int
static
val
alertDialogStyle
:
Int
static
val
alertDialogTheme
:
Int
static
val
allowStacking
:
Int
static
val
alpha
:
Int
static
val
alphabeticModifiers
:
Int
static
val
arrowHeadLength
:
Int
static
val
arrowShaftLength
:
Int
static
val
autoCompleteTextViewStyle
:
Int
static
val
autoSizeMaxTextSize
:
Int
static
val
autoSizeMinTextSize
:
Int
static
val
autoSizePresetSizes
:
Int
static
val
autoSizeStepGranularity
:
Int
static
val
autoSizeTextType
:
Int
static
val
background
:
Int
static
val
backgroundSplit
:
Int
static
val
backgroundStacked
:
Int
static
val
backgroundTint
:
Int
static
val
backgroundTintMode
:
Int
static
val
barLength
:
Int
static
val
barrierAllowsGoneWidgets
:
Int
static
val
barrierDirection
:
Int
static
val
behavior_autoHide
:
Int
static
val
behavior_fitToContents
:
Int
static
val
behavior_hideable
:
Int
static
val
behavior_overlapTop
:
Int
static
val
behavior_peekHeight
:
Int
static
val
behavior_skipCollapsed
:
Int
static
val
borderWidth
:
Int
static
val
borderlessButtonStyle
:
Int
static
val
bottomAppBarStyle
:
Int
static
val
bottomNavigationStyle
:
Int
static
val
bottomSheetDialogTheme
:
Int
static
val
bottomSheetStyle
:
Int
static
val
boxBackgroundColor
:
Int
static
val
boxBackgroundMode
:
Int
static
val
boxCollapsedPaddingTop
:
Int
static
val
boxCornerRadiusBottomEnd
:
Int
static
val
boxCornerRadiusBottomStart
:
Int
static
val
boxCornerRadiusTopEnd
:
Int
static
val
boxCornerRadiusTopStart
:
Int
static
val
boxStrokeColor
:
Int
static
val
boxStrokeWidth
:
Int
static
val
buttonBarButtonStyle
:
Int
static
val
buttonBarNegativeButtonStyle
:
Int
static
val
buttonBarNeutralButtonStyle
:
Int
static
val
buttonBarPositiveButtonStyle
:
Int
static
val
buttonBarStyle
:
Int
static
val
buttonGravity
:
Int
static
val
buttonIconDimen
:
Int
static
val
buttonPanelSideLayout
:
Int
static
val
buttonStyle
:
Int
static
val
buttonStyleSmall
:
Int
static
val
buttonTint
:
Int
static
val
buttonTintMode
:
Int
static
val
cardBackgroundColor
:
Int
static
val
cardCornerRadius
:
Int
static
val
cardElevation
:
Int
static
val
cardMaxElevation
:
Int
static
val
cardPreventCornerOverlap
:
Int
static
val
cardUseCompatPadding
:
Int
static
val
cardViewStyle
:
Int
static
val
chainUseRtl
:
Int
static
val
checkboxStyle
:
Int
static
val
checkedChip
:
Int
static
val
checkedIcon
:
Int
static
val
checkedIconEnabled
:
Int
static
val
checkedIconVisible
:
Int
static
val
checkedTextViewStyle
:
Int
static
val
chipBackgroundColor
:
Int
static
val
chipCornerRadius
:
Int
static
val
chipEndPadding
:
Int
static
val
chipGroupStyle
:
Int
static
val
chipIcon
:
Int
static
val
chipIconEnabled
:
Int
static
val
chipIconSize
:
Int
static
val
chipIconTint
:
Int
static
val
chipIconVisible
:
Int
static
val
chipMinHeight
:
Int
static
val
chipSpacing
:
Int
static
val
chipSpacingHorizontal
:
Int
static
val
chipSpacingVertical
:
Int
static
val
chipStandaloneStyle
:
Int
static
val
chipStartPadding
:
Int
static
val
chipStrokeColor
:
Int
static
val
chipStrokeWidth
:
Int
static
val
chipStyle
:
Int
static
val
closeIcon
:
Int
static
val
closeIconEnabled
:
Int
static
val
closeIconEndPadding
:
Int
static
val
closeIconSize
:
Int
static
val
closeIconStartPadding
:
Int
static
val
closeIconTint
:
Int
static
val
closeIconVisible
:
Int
static
val
closeItemLayout
:
Int
static
val
collapseContentDescription
:
Int
static
val
collapseIcon
:
Int
static
val
collapsedTitleGravity
:
Int
static
val
collapsedTitleTextAppearance
:
Int
static
val
color
:
Int
static
val
colorAccent
:
Int
static
val
colorBackgroundFloating
:
Int
static
val
colorButtonNormal
:
Int
static
val
colorControlActivated
:
Int
static
val
colorControlHighlight
:
Int
static
val
colorControlNormal
:
Int
static
val
colorError
:
Int
static
val
colorPrimary
:
Int
static
val
colorPrimaryDark
:
Int
static
val
colorSecondary
:
Int
static
val
colorSwitchThumbNormal
:
Int
static
val
commitIcon
:
Int
static
val
constraintSet
:
Int
static
val
constraint_referenced_ids
:
Int
static
val
content
:
Int
static
val
contentDescription
:
Int
static
val
contentInsetEnd
:
Int
static
val
contentInsetEndWithActions
:
Int
static
val
contentInsetLeft
:
Int
static
val
contentInsetRight
:
Int
static
val
contentInsetStart
:
Int
static
val
contentInsetStartWithNavigation
:
Int
static
val
contentPadding
:
Int
static
val
contentPaddingBottom
:
Int
static
val
contentPaddingLeft
:
Int
static
val
contentPaddingRight
:
Int
static
val
contentPaddingTop
:
Int
static
val
contentScrim
:
Int
static
val
controlBackground
:
Int
static
val
coordinatorLayoutStyle
:
Int
static
val
cornerRadius
:
Int
static
val
counterEnabled
:
Int
static
val
counterMaxLength
:
Int
static
val
counterOverflowTextAppearance
:
Int
static
val
counterTextAppearance
:
Int
static
val
customNavigationLayout
:
Int
static
val
defaultQueryHint
:
Int
static
val
dialogCornerRadius
:
Int
static
val
dialogPreferredPadding
:
Int
static
val
dialogTheme
:
Int
static
val
displayOptions
:
Int
static
val
divider
:
Int
static
val
dividerHorizontal
:
Int
static
val
dividerPadding
:
Int
static
val
dividerVertical
:
Int
static
val
drawableSize
:
Int
static
val
drawerArrowStyle
:
Int
static
val
dropDownListViewStyle
:
Int
static
val
dropdownListPreferredItemHeight
:
Int
static
val
editTextBackground
:
Int
static
val
editTextColor
:
Int
static
val
editTextStyle
:
Int
static
val
elevation
:
Int
static
val
emptyVisibility
:
Int
static
val
enforceMaterialTheme
:
Int
static
val
enforceTextAppearance
:
Int
static
val
errorEnabled
:
Int
static
val
errorTextAppearance
:
Int
static
val
expandActivityOverflowButtonDrawable
:
Int
static
val
expanded
:
Int
static
val
expandedTitleGravity
:
Int
static
val
expandedTitleMargin
:
Int
static
val
expandedTitleMarginBottom
:
Int
static
val
expandedTitleMarginEnd
:
Int
static
val
expandedTitleMarginStart
:
Int
static
val
expandedTitleMarginTop
:
Int
static
val
expandedTitleTextAppearance
:
Int
static
val
fabAlignmentMode
:
Int
static
val
fabCradleMargin
:
Int
static
val
fabCradleRoundedCornerRadius
:
Int
static
val
fabCradleVerticalOffset
:
Int
static
val
fabCustomSize
:
Int
static
val
fabSize
:
Int
static
val
fastScrollEnabled
:
Int
static
val
fastScrollHorizontalThumbDrawable
:
Int
static
val
fastScrollHorizontalTrackDrawable
:
Int
static
val
fastScrollVerticalThumbDrawable
:
Int
static
val
fastScrollVerticalTrackDrawable
:
Int
static
val
firstBaselineToTopHeight
:
Int
static
val
floatingActionButtonStyle
:
Int
static
val
font
:
Int
static
val
fontFamily
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
foregroundInsidePadding
:
Int
static
val
gapBetweenBars
:
Int
static
val
goIcon
:
Int
static
val
headerLayout
:
Int
static
val
height
:
Int
static
val
helperText
:
Int
static
val
helperTextEnabled
:
Int
static
val
helperTextTextAppearance
:
Int
static
val
hideMotionSpec
:
Int
static
val
hideOnContentScroll
:
Int
static
val
hideOnScroll
:
Int
static
val
hintAnimationEnabled
:
Int
static
val
hintEnabled
:
Int
static
val
hintTextAppearance
:
Int
static
val
homeAsUpIndicator
:
Int
static
val
homeLayout
:
Int
static
val
hoveredFocusedTranslationZ
:
Int
static
val
icon
:
Int
static
val
iconEndPadding
:
Int
static
val
iconGravity
:
Int
static
val
iconPadding
:
Int
static
val
iconSize
:
Int
static
val
iconStartPadding
:
Int
static
val
iconTint
:
Int
static
val
iconTintMode
:
Int
static
val
iconifiedByDefault
:
Int
static
val
imageButtonStyle
:
Int
static
val
indeterminateProgressStyle
:
Int
static
val
initialActivityCount
:
Int
static
val
insetForeground
:
Int
static
val
isLightTheme
:
Int
static
val
itemBackground
:
Int
static
val
itemHorizontalPadding
:
Int
static
val
itemHorizontalTranslationEnabled
:
Int
static
val
itemIconPadding
:
Int
static
val
itemIconSize
:
Int
static
val
itemIconTint
:
Int
static
val
itemPadding
:
Int
static
val
itemSpacing
:
Int
static
val
itemTextAppearance
:
Int
static
val
itemTextAppearanceActive
:
Int
static
val
itemTextAppearanceInactive
:
Int
static
val
itemTextColor
:
Int
static
val
keylines
:
Int
static
val
labelVisibilityMode
:
Int
static
val
lastBaselineToBottomHeight
:
Int
static
val
layout
:
Int
static
val
layoutManager
:
Int
static
val
layout_anchor
:
Int
static
val
layout_anchorGravity
:
Int
static
val
layout_behavior
:
Int
static
val
layout_collapseMode
:
Int
static
val
layout_collapseParallaxMultiplier
:
Int
static
val
layout_constrainedHeight
:
Int
static
val
layout_constrainedWidth
:
Int
static
val
layout_constraintBaseline_creator
:
Int
static
val
layout_constraintBaseline_toBaselineOf
:
Int
static
val
layout_constraintBottom_creator
:
Int
static
val
layout_constraintBottom_toBottomOf
:
Int
static
val
layout_constraintBottom_toTopOf
:
Int
static
val
layout_constraintCircle
:
Int
static
val
layout_constraintCircleAngle
:
Int
static
val
layout_constraintCircleRadius
:
Int
static
val
layout_constraintDimensionRatio
:
Int
static
val
layout_constraintEnd_toEndOf
:
Int
static
val
layout_constraintEnd_toStartOf
:
Int
static
val
layout_constraintGuide_begin
:
Int
static
val
layout_constraintGuide_end
:
Int
static
val
layout_constraintGuide_percent
:
Int
static
val
layout_constraintHeight_default
:
Int
static
val
layout_constraintHeight_max
:
Int
static
val
layout_constraintHeight_min
:
Int
static
val
layout_constraintHeight_percent
:
Int
static
val
layout_constraintHorizontal_bias
:
Int
static
val
layout_constraintHorizontal_chainStyle
:
Int
static
val
layout_constraintHorizontal_weight
:
Int
static
val
layout_constraintLeft_creator
:
Int
static
val
layout_constraintLeft_toLeftOf
:
Int
static
val
layout_constraintLeft_toRightOf
:
Int
static
val
layout_constraintRight_creator
:
Int
static
val
layout_constraintRight_toLeftOf
:
Int
static
val
layout_constraintRight_toRightOf
:
Int
static
val
layout_constraintStart_toEndOf
:
Int
static
val
layout_constraintStart_toStartOf
:
Int
static
val
layout_constraintTop_creator
:
Int
static
val
layout_constraintTop_toBottomOf
:
Int
static
val
layout_constraintTop_toTopOf
:
Int
static
val
layout_constraintVertical_bias
:
Int
static
val
layout_constraintVertical_chainStyle
:
Int
static
val
layout_constraintVertical_weight
:
Int
static
val
layout_constraintWidth_default
:
Int
static
val
layout_constraintWidth_max
:
Int
static
val
layout_constraintWidth_min
:
Int
static
val
layout_constraintWidth_percent
:
Int
static
val
layout_dodgeInsetEdges
:
Int
static
val
layout_editor_absoluteX
:
Int
static
val
layout_editor_absoluteY
:
Int
static
val
layout_goneMarginBottom
:
Int
static
val
layout_goneMarginEnd
:
Int
static
val
layout_goneMarginLeft
:
Int
static
val
layout_goneMarginRight
:
Int
static
val
layout_goneMarginStart
:
Int
static
val
layout_goneMarginTop
:
Int
static
val
layout_insetEdge
:
Int
static
val
layout_keyline
:
Int
static
val
layout_optimizationLevel
:
Int
static
val
layout_scrollFlags
:
Int
static
val
layout_scrollInterpolator
:
Int
static
val
liftOnScroll
:
Int
static
val
lineHeight
:
Int
static
val
lineSpacing
:
Int
static
val
listChoiceBackgroundIndicator
:
Int
static
val
listDividerAlertDialog
:
Int
static
val
listItemLayout
:
Int
static
val
listLayout
:
Int
static
val
listMenuViewStyle
:
Int
static
val
listPopupWindowStyle
:
Int
static
val
listPreferredItemHeight
:
Int
static
val
listPreferredItemHeightLarge
:
Int
static
val
listPreferredItemHeightSmall
:
Int
static
val
listPreferredItemPaddingLeft
:
Int
static
val
listPreferredItemPaddingRight
:
Int
static
val
logo
:
Int
static
val
logoDescription
:
Int
static
val
materialButtonStyle
:
Int
static
val
materialCardViewStyle
:
Int
static
val
maxActionInlineWidth
:
Int
static
val
maxButtonHeight
:
Int
static
val
maxImageSize
:
Int
static
val
measureWithLargestChild
:
Int
static
val
menu
:
Int
static
val
multiChoiceItemLayout
:
Int
static
val
navigationContentDescription
:
Int
static
val
navigationIcon
:
Int
static
val
navigationMode
:
Int
static
val
navigationViewStyle
:
Int
static
val
numericModifiers
:
Int
static
val
overlapAnchor
:
Int
static
val
paddingBottomNoButtons
:
Int
static
val
paddingEnd
:
Int
static
val
paddingStart
:
Int
static
val
paddingTopNoTitle
:
Int
static
val
panelBackground
:
Int
static
val
panelMenuListTheme
:
Int
static
val
panelMenuListWidth
:
Int
static
val
passwordToggleContentDescription
:
Int
static
val
passwordToggleDrawable
:
Int
static
val
passwordToggleEnabled
:
Int
static
val
passwordToggleTint
:
Int
static
val
passwordToggleTintMode
:
Int
static
val
popupMenuStyle
:
Int
static
val
popupTheme
:
Int
static
val
popupWindowStyle
:
Int
static
val
preserveIconSpacing
:
Int
static
val
pressedTranslationZ
:
Int
static
val
progressBarPadding
:
Int
static
val
progressBarStyle
:
Int
static
val
queryBackground
:
Int
static
val
queryHint
:
Int
static
val
radioButtonStyle
:
Int
static
val
ratingBarStyle
:
Int
static
val
ratingBarStyleIndicator
:
Int
static
val
ratingBarStyleSmall
:
Int
static
val
reverseLayout
:
Int
static
val
rippleColor
:
Int
static
val
scrimAnimationDuration
:
Int
static
val
scrimBackground
:
Int
static
val
scrimVisibleHeightTrigger
:
Int
static
val
searchHintIcon
:
Int
static
val
searchIcon
:
Int
static
val
searchViewStyle
:
Int
static
val
seekBarStyle
:
Int
static
val
selectableItemBackground
:
Int
static
val
selectableItemBackgroundBorderless
:
Int
static
val
showAsAction
:
Int
static
val
showDividers
:
Int
static
val
showMotionSpec
:
Int
static
val
showText
:
Int
static
val
showTitle
:
Int
static
val
singleChoiceItemLayout
:
Int
static
val
singleLine
:
Int
static
val
singleSelection
:
Int
static
val
snackbarButtonStyle
:
Int
static
val
snackbarStyle
:
Int
static
val
spanCount
:
Int
static
val
spinBars
:
Int
static
val
spinnerDropDownItemStyle
:
Int
static
val
spinnerStyle
:
Int
static
val
splitTrack
:
Int
static
val
srcCompat
:
Int
static
val
stackFromEnd
:
Int
static
val
state_above_anchor
:
Int
static
val
state_collapsed
:
Int
static
val
state_collapsible
:
Int
static
val
state_liftable
:
Int
static
val
state_lifted
:
Int
static
val
statusBarBackground
:
Int
static
val
statusBarScrim
:
Int
static
val
strokeColor
:
Int
static
val
strokeWidth
:
Int
static
val
subMenuArrow
:
Int
static
val
submitBackground
:
Int
static
val
subtitle
:
Int
static
val
subtitleTextAppearance
:
Int
static
val
subtitleTextColor
:
Int
static
val
subtitleTextStyle
:
Int
static
val
suggestionRowLayout
:
Int
static
val
switchMinWidth
:
Int
static
val
switchPadding
:
Int
static
val
switchStyle
:
Int
static
val
switchTextAppearance
:
Int
static
val
tabBackground
:
Int
static
val
tabContentStart
:
Int
static
val
tabGravity
:
Int
static
val
tabIconTint
:
Int
static
val
tabIconTintMode
:
Int
static
val
tabIndicator
:
Int
static
val
tabIndicatorAnimationDuration
:
Int
static
val
tabIndicatorColor
:
Int
static
val
tabIndicatorFullWidth
:
Int
static
val
tabIndicatorGravity
:
Int
static
val
tabIndicatorHeight
:
Int
static
val
tabInlineLabel
:
Int
static
val
tabMaxWidth
:
Int
static
val
tabMinWidth
:
Int
static
val
tabMode
:
Int
static
val
tabPadding
:
Int
static
val
tabPaddingBottom
:
Int
static
val
tabPaddingEnd
:
Int
static
val
tabPaddingStart
:
Int
static
val
tabPaddingTop
:
Int
static
val
tabRippleColor
:
Int
static
val
tabSelectedTextColor
:
Int
static
val
tabStyle
:
Int
static
val
tabTextAppearance
:
Int
static
val
tabTextColor
:
Int
static
val
tabUnboundedRipple
:
Int
static
val
textAllCaps
:
Int
static
val
textAppearanceBody1
:
Int
static
val
textAppearanceBody2
:
Int
static
val
textAppearanceButton
:
Int
static
val
textAppearanceCaption
:
Int
static
val
textAppearanceHeadline1
:
Int
static
val
textAppearanceHeadline2
:
Int
static
val
textAppearanceHeadline3
:
Int
static
val
textAppearanceHeadline4
:
Int
static
val
textAppearanceHeadline5
:
Int
static
val
textAppearanceHeadline6
:
Int
static
val
textAppearanceLargePopupMenu
:
Int
static
val
textAppearanceListItem
:
Int
static
val
textAppearanceListItemSecondary
:
Int
static
val
textAppearanceListItemSmall
:
Int
static
val
textAppearanceOverline
:
Int
static
val
textAppearancePopupMenuHeader
:
Int
static
val
textAppearanceSearchResultSubtitle
:
Int
static
val
textAppearanceSearchResultTitle
:
Int
static
val
textAppearanceSmallPopupMenu
:
Int
static
val
textAppearanceSubtitle1
:
Int
static
val
textAppearanceSubtitle2
:
Int
static
val
textColorAlertDialogListItem
:
Int
static
val
textColorSearchUrl
:
Int
static
val
textEndPadding
:
Int
static
val
textInputStyle
:
Int
static
val
textStartPadding
:
Int
static
val
theme
:
Int
static
val
thickness
:
Int
static
val
thumbTextPadding
:
Int
static
val
thumbTint
:
Int
static
val
thumbTintMode
:
Int
static
val
tickMark
:
Int
static
val
tickMarkTint
:
Int
static
val
tickMarkTintMode
:
Int
static
val
tint
:
Int
static
val
tintMode
:
Int
static
val
title
:
Int
static
val
titleEnabled
:
Int
static
val
titleMargin
:
Int
static
val
titleMarginBottom
:
Int
static
val
titleMarginEnd
:
Int
static
val
titleMarginStart
:
Int
static
val
titleMarginTop
:
Int
static
val
titleMargins
:
Int
static
val
titleTextAppearance
:
Int
static
val
titleTextColor
:
Int
static
val
titleTextStyle
:
Int
static
val
toolbarId
:
Int
static
val
toolbarNavigationButtonStyle
:
Int
static
val
toolbarStyle
:
Int
static
val
tooltipForegroundColor
:
Int
static
val
tooltipFrameBackground
:
Int
static
val
tooltipText
:
Int
static
val
track
:
Int
static
val
trackTint
:
Int
static
val
trackTintMode
:
Int
static
val
ttcIndex
:
Int
static
val
useCompatPadding
:
Int
static
val
viewInflaterClass
:
Int
static
val
voiceIcon
:
Int
static
val
windowActionBar
:
Int
static
val
windowActionBarOverlay
:
Int
static
val
windowActionModeOverlay
:
Int
static
val
windowFixedHeightMajor
:
Int
static
val
windowFixedHeightMinor
:
Int
static
val
windowFixedWidthMajor
:
Int
static
val
windowFixedWidthMinor
:
Int
static
val
windowMinWidthMajor
:
Int
static
val
windowMinWidthMinor
:
Int
static
val
windowNoTitle
:
Int
class
bool
Module Contents
bool
(
)
static
val
abc_action_bar_embed_tabs
:
Int
static
val
abc_allow_stacked_button_bar
:
Int
static
val
abc_config_actionMenuItemAllCaps
:
Int
static
val
mtrl_btn_textappearance_all_caps
:
Int
class
color
Module Contents
color
(
)
static
val
abc_background_cache_hint_selector_material_dark
:
Int
static
val
abc_background_cache_hint_selector_material_light
:
Int
static
val
abc_btn_colored_borderless_text_material
:
Int
static
val
abc_btn_colored_text_material
:
Int
static
val
abc_color_highlight_material
:
Int
static
val
abc_hint_foreground_material_dark
:
Int
static
val
abc_hint_foreground_material_light
:
Int
static
val
abc_input_method_navigation_guard
:
Int
static
val
abc_primary_text_disable_only_material_dark
:
Int
static
val
abc_primary_text_disable_only_material_light
:
Int
static
val
abc_primary_text_material_dark
:
Int
static
val
abc_primary_text_material_light
:
Int
static
val
abc_search_url_text
:
Int
static
val
abc_search_url_text_normal
:
Int
static
val
abc_search_url_text_pressed
:
Int
static
val
abc_search_url_text_selected
:
Int
static
val
abc_secondary_text_material_dark
:
Int
static
val
abc_secondary_text_material_light
:
Int
static
val
abc_tint_btn_checkable
:
Int
static
val
abc_tint_default
:
Int
static
val
abc_tint_edittext
:
Int
static
val
abc_tint_seek_thumb
:
Int
static
val
abc_tint_spinner
:
Int
static
val
abc_tint_switch_track
:
Int
static
val
accent_material_dark
:
Int
static
val
accent_material_light
:
Int
static
val
background_floating_material_dark
:
Int
static
val
background_floating_material_light
:
Int
static
val
background_material_dark
:
Int
static
val
background_material_light
:
Int
static
val
bright_foreground_disabled_material_dark
:
Int
static
val
bright_foreground_disabled_material_light
:
Int
static
val
bright_foreground_inverse_material_dark
:
Int
static
val
bright_foreground_inverse_material_light
:
Int
static
val
bright_foreground_material_dark
:
Int
static
val
bright_foreground_material_light
:
Int
static
val
button_material_dark
:
Int
static
val
button_material_light
:
Int
static
val
cardview_dark_background
:
Int
static
val
cardview_light_background
:
Int
static
val
cardview_shadow_end_color
:
Int
static
val
cardview_shadow_start_color
:
Int
static
val
cityListBackgroundColor
:
Int
static
val
colorAccent
:
Int
static
val
colorAccentDark
:
Int
static
val
colorError
:
Int
static
val
colorPrimary
:
Int
static
val
colorPrimaryDark
:
Int
static
val
colorPrimaryLight
:
Int
static
val
design_bottom_navigation_shadow_color
:
Int
static
val
design_default_color_primary
:
Int
static
val
design_default_color_primary_dark
:
Int
static
val
design_error
:
Int
static
val
design_fab_shadow_end_color
:
Int
static
val
design_fab_shadow_mid_color
:
Int
static
val
design_fab_shadow_start_color
:
Int
static
val
design_fab_stroke_end_inner_color
:
Int
static
val
design_fab_stroke_end_outer_color
:
Int
static
val
design_fab_stroke_top_inner_color
:
Int
static
val
design_fab_stroke_top_outer_color
:
Int
static
val
design_snackbar_background_color
:
Int
static
val
design_tint_password_toggle
:
Int
static
val
dim_foreground_disabled_material_dark
:
Int
static
val
dim_foreground_disabled_material_light
:
Int
static
val
dim_foreground_material_dark
:
Int
static
val
dim_foreground_material_light
:
Int
static
val
error_color_material_dark
:
Int
static
val
error_color_material_light
:
Int
static
val
foreground_material_dark
:
Int
static
val
foreground_material_light
:
Int
static
val
highlighted_text_material_dark
:
Int
static
val
highlighted_text_material_light
:
Int
static
val
ic_launcher_background
:
Int
static
val
loginPageBackgroundColor
:
Int
static
val
material_blue_grey_800
:
Int
static
val
material_blue_grey_900
:
Int
static
val
material_blue_grey_950
:
Int
static
val
material_deep_teal_200
:
Int
static
val
material_deep_teal_500
:
Int
static
val
material_grey_100
:
Int
static
val
material_grey_300
:
Int
static
val
material_grey_50
:
Int
static
val
material_grey_600
:
Int
static
val
material_grey_800
:
Int
static
val
material_grey_850
:
Int
static
val
material_grey_900
:
Int
static
val
mtrl_bottom_nav_colored_item_tint
:
Int
static
val
mtrl_bottom_nav_item_tint
:
Int
static
val
mtrl_btn_bg_color_disabled
:
Int
static
val
mtrl_btn_bg_color_selector
:
Int
static
val
mtrl_btn_ripple_color
:
Int
static
val
mtrl_btn_stroke_color_selector
:
Int
static
val
mtrl_btn_text_btn_ripple_color
:
Int
static
val
mtrl_btn_text_color_disabled
:
Int
static
val
mtrl_btn_text_color_selector
:
Int
static
val
mtrl_btn_transparent_bg_color
:
Int
static
val
mtrl_chip_background_color
:
Int
static
val
mtrl_chip_close_icon_tint
:
Int
static
val
mtrl_chip_ripple_color
:
Int
static
val
mtrl_chip_text_color
:
Int
static
val
mtrl_fab_ripple_color
:
Int
static
val
mtrl_scrim_color
:
Int
static
val
mtrl_tabs_colored_ripple_color
:
Int
static
val
mtrl_tabs_icon_color_selector
:
Int
static
val
mtrl_tabs_icon_color_selector_colored
:
Int
static
val
mtrl_tabs_legacy_text_color_selector
:
Int
static
val
mtrl_tabs_ripple_color
:
Int
static
val
mtrl_text_btn_text_color_selector
:
Int
static
val
mtrl_textinput_default_box_stroke_color
:
Int
static
val
mtrl_textinput_disabled_color
:
Int
static
val
mtrl_textinput_filled_box_default_background_color
:
Int
static
val
mtrl_textinput_hovered_box_stroke_color
:
Int
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
notification_material_background_media_default_color
:
Int
static
val
primary_dark_material_dark
:
Int
static
val
primary_dark_material_light
:
Int
static
val
primary_material_dark
:
Int
static
val
primary_material_light
:
Int
static
val
primary_text_default_material_dark
:
Int
static
val
primary_text_default_material_light
:
Int
static
val
primary_text_disabled_material_dark
:
Int
static
val
primary_text_disabled_material_light
:
Int
static
val
ripple_material_dark
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_dark
:
Int
static
val
secondary_text_default_material_light
:
Int
static
val
secondary_text_disabled_material_dark
:
Int
static
val
secondary_text_disabled_material_light
:
Int
static
val
switch_thumb_disabled_material_dark
:
Int
static
val
switch_thumb_disabled_material_light
:
Int
static
val
switch_thumb_material_dark
:
Int
static
val
switch_thumb_material_light
:
Int
static
val
switch_thumb_normal_material_dark
:
Int
static
val
switch_thumb_normal_material_light
:
Int
static
val
tooltip_background_dark
:
Int
static
val
tooltip_background_light
:
Int
class
dimen
Module Contents
dimen
(
)
static
val
abc_action_bar_content_inset_material
:
Int
static
val
abc_action_bar_content_inset_with_nav
:
Int
static
val
abc_action_bar_default_height_material
:
Int
static
val
abc_action_bar_default_padding_end_material
:
Int
static
val
abc_action_bar_default_padding_start_material
:
Int
static
val
abc_action_bar_elevation_material
:
Int
static
val
abc_action_bar_icon_vertical_padding_material
:
Int
static
val
abc_action_bar_overflow_padding_end_material
:
Int
static
val
abc_action_bar_overflow_padding_start_material
:
Int
static
val
abc_action_bar_stacked_max_height
:
Int
static
val
abc_action_bar_stacked_tab_max_width
:
Int
static
val
abc_action_bar_subtitle_bottom_margin_material
:
Int
static
val
abc_action_bar_subtitle_top_margin_material
:
Int
static
val
abc_action_button_min_height_material
:
Int
static
val
abc_action_button_min_width_material
:
Int
static
val
abc_action_button_min_width_overflow_material
:
Int
static
val
abc_alert_dialog_button_bar_height
:
Int
static
val
abc_alert_dialog_button_dimen
:
Int
static
val
abc_button_inset_horizontal_material
:
Int
static
val
abc_button_inset_vertical_material
:
Int
static
val
abc_button_padding_horizontal_material
:
Int
static
val
abc_button_padding_vertical_material
:
Int
static
val
abc_cascading_menus_min_smallest_width
:
Int
static
val
abc_config_prefDialogWidth
:
Int
static
val
abc_control_corner_material
:
Int
static
val
abc_control_inset_material
:
Int
static
val
abc_control_padding_material
:
Int
static
val
abc_dialog_corner_radius_material
:
Int
static
val
abc_dialog_fixed_height_major
:
Int
static
val
abc_dialog_fixed_height_minor
:
Int
static
val
abc_dialog_fixed_width_major
:
Int
static
val
abc_dialog_fixed_width_minor
:
Int
static
val
abc_dialog_list_padding_bottom_no_buttons
:
Int
static
val
abc_dialog_list_padding_top_no_title
:
Int
static
val
abc_dialog_min_width_major
:
Int
static
val
abc_dialog_min_width_minor
:
Int
static
val
abc_dialog_padding_material
:
Int
static
val
abc_dialog_padding_top_material
:
Int
static
val
abc_dialog_title_divider_material
:
Int
static
val
abc_disabled_alpha_material_dark
:
Int
static
val
abc_disabled_alpha_material_light
:
Int
static
val
abc_dropdownitem_icon_width
:
Int
static
val
abc_dropdownitem_text_padding_left
:
Int
static
val
abc_dropdownitem_text_padding_right
:
Int
static
val
abc_edit_text_inset_bottom_material
:
Int
static
val
abc_edit_text_inset_horizontal_material
:
Int
static
val
abc_edit_text_inset_top_material
:
Int
static
val
abc_floating_window_z
:
Int
static
val
abc_list_item_padding_horizontal_material
:
Int
static
val
abc_panel_menu_list_width
:
Int
static
val
abc_progress_bar_height_material
:
Int
static
val
abc_search_view_preferred_height
:
Int
static
val
abc_search_view_preferred_width
:
Int
static
val
abc_seekbar_track_background_height_material
:
Int
static
val
abc_seekbar_track_progress_height_material
:
Int
static
val
abc_select_dialog_padding_start_material
:
Int
static
val
abc_switch_padding
:
Int
static
val
abc_text_size_body_1_material
:
Int
static
val
abc_text_size_body_2_material
:
Int
static
val
abc_text_size_button_material
:
Int
static
val
abc_text_size_caption_material
:
Int
static
val
abc_text_size_display_1_material
:
Int
static
val
abc_text_size_display_2_material
:
Int
static
val
abc_text_size_display_3_material
:
Int
static
val
abc_text_size_display_4_material
:
Int
static
val
abc_text_size_headline_material
:
Int
static
val
abc_text_size_large_material
:
Int
static
val
abc_text_size_medium_material
:
Int
static
val
abc_text_size_menu_header_material
:
Int
static
val
abc_text_size_menu_material
:
Int
static
val
abc_text_size_small_material
:
Int
static
val
abc_text_size_subhead_material
:
Int
static
val
abc_text_size_subtitle_material_toolbar
:
Int
static
val
abc_text_size_title_material
:
Int
static
val
abc_text_size_title_material_toolbar
:
Int
static
val
activity_horizontal_margin
:
Int
static
val
activity_vertical_margin
:
Int
static
val
cardview_compat_inset_shadow
:
Int
static
val
cardview_default_elevation
:
Int
static
val
cardview_default_radius
:
Int
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
design_appbar_elevation
:
Int
static
val
design_bottom_navigation_active_item_max_width
:
Int
static
val
design_bottom_navigation_active_item_min_width
:
Int
static
val
design_bottom_navigation_active_text_size
:
Int
static
val
design_bottom_navigation_elevation
:
Int
static
val
design_bottom_navigation_height
:
Int
static
val
design_bottom_navigation_icon_size
:
Int
static
val
design_bottom_navigation_item_max_width
:
Int
static
val
design_bottom_navigation_item_min_width
:
Int
static
val
design_bottom_navigation_margin
:
Int
static
val
design_bottom_navigation_shadow_height
:
Int
static
val
design_bottom_navigation_text_size
:
Int
static
val
design_bottom_sheet_modal_elevation
:
Int
static
val
design_bottom_sheet_peek_height_min
:
Int
static
val
design_fab_border_width
:
Int
static
val
design_fab_elevation
:
Int
static
val
design_fab_image_size
:
Int
static
val
design_fab_size_mini
:
Int
static
val
design_fab_size_normal
:
Int
static
val
design_fab_translation_z_hovered_focused
:
Int
static
val
design_fab_translation_z_pressed
:
Int
static
val
design_navigation_elevation
:
Int
static
val
design_navigation_icon_padding
:
Int
static
val
design_navigation_icon_size
:
Int
static
val
design_navigation_item_horizontal_padding
:
Int
static
val
design_navigation_item_icon_padding
:
Int
static
val
design_navigation_max_width
:
Int
static
val
design_navigation_padding_bottom
:
Int
static
val
design_navigation_separator_vertical_padding
:
Int
static
val
design_snackbar_action_inline_max_width
:
Int
static
val
design_snackbar_background_corner_radius
:
Int
static
val
design_snackbar_elevation
:
Int
static
val
design_snackbar_extra_spacing_horizontal
:
Int
static
val
design_snackbar_max_width
:
Int
static
val
design_snackbar_min_width
:
Int
static
val
design_snackbar_padding_horizontal
:
Int
static
val
design_snackbar_padding_vertical
:
Int
static
val
design_snackbar_padding_vertical_2lines
:
Int
static
val
design_snackbar_text_size
:
Int
static
val
design_tab_max_width
:
Int
static
val
design_tab_scrollable_min_width
:
Int
static
val
design_tab_text_size
:
Int
static
val
design_tab_text_size_2line
:
Int
static
val
design_textinput_caption_translate_y
:
Int
static
val
disabled_alpha_material_dark
:
Int
static
val
disabled_alpha_material_light
:
Int
static
val
fastscroll_default_thickness
:
Int
static
val
fastscroll_margin
:
Int
static
val
fastscroll_minimum_range
:
Int
static
val
highlight_alpha_material_colored
:
Int
static
val
highlight_alpha_material_dark
:
Int
static
val
highlight_alpha_material_light
:
Int
static
val
hint_alpha_material_dark
:
Int
static
val
hint_alpha_material_light
:
Int
static
val
hint_pressed_alpha_material_dark
:
Int
static
val
hint_pressed_alpha_material_light
:
Int
static
val
item_touch_helper_max_drag_scroll_per_frame
:
Int
static
val
item_touch_helper_swipe_escape_max_velocity
:
Int
static
val
item_touch_helper_swipe_escape_velocity
:
Int
static
val
mtrl_bottomappbar_fabOffsetEndMode
:
Int
static
val
mtrl_bottomappbar_fab_cradle_margin
:
Int
static
val
mtrl_bottomappbar_fab_cradle_rounded_corner_radius
:
Int
static
val
mtrl_bottomappbar_fab_cradle_vertical_offset
:
Int
static
val
mtrl_bottomappbar_height
:
Int
static
val
mtrl_btn_corner_radius
:
Int
static
val
mtrl_btn_dialog_btn_min_width
:
Int
static
val
mtrl_btn_disabled_elevation
:
Int
static
val
mtrl_btn_disabled_z
:
Int
static
val
mtrl_btn_elevation
:
Int
static
val
mtrl_btn_focused_z
:
Int
static
val
mtrl_btn_hovered_z
:
Int
static
val
mtrl_btn_icon_btn_padding_left
:
Int
static
val
mtrl_btn_icon_padding
:
Int
static
val
mtrl_btn_inset
:
Int
static
val
mtrl_btn_letter_spacing
:
Int
static
val
mtrl_btn_padding_bottom
:
Int
static
val
mtrl_btn_padding_left
:
Int
static
val
mtrl_btn_padding_right
:
Int
static
val
mtrl_btn_padding_top
:
Int
static
val
mtrl_btn_pressed_z
:
Int
static
val
mtrl_btn_stroke_size
:
Int
static
val
mtrl_btn_text_btn_icon_padding
:
Int
static
val
mtrl_btn_text_btn_padding_left
:
Int
static
val
mtrl_btn_text_btn_padding_right
:
Int
static
val
mtrl_btn_text_size
:
Int
static
val
mtrl_btn_z
:
Int
static
val
mtrl_card_elevation
:
Int
static
val
mtrl_card_spacing
:
Int
static
val
mtrl_chip_pressed_translation_z
:
Int
static
val
mtrl_chip_text_size
:
Int
static
val
mtrl_fab_elevation
:
Int
static
val
mtrl_fab_translation_z_hovered_focused
:
Int
static
val
mtrl_fab_translation_z_pressed
:
Int
static
val
mtrl_navigation_elevation
:
Int
static
val
mtrl_navigation_item_horizontal_padding
:
Int
static
val
mtrl_navigation_item_icon_padding
:
Int
static
val
mtrl_snackbar_background_corner_radius
:
Int
static
val
mtrl_snackbar_margin
:
Int
static
val
mtrl_textinput_box_bottom_offset
:
Int
static
val
mtrl_textinput_box_corner_radius_medium
:
Int
static
val
mtrl_textinput_box_corner_radius_small
:
Int
static
val
mtrl_textinput_box_label_cutout_padding
:
Int
static
val
mtrl_textinput_box_padding_end
:
Int
static
val
mtrl_textinput_box_stroke_width_default
:
Int
static
val
mtrl_textinput_box_stroke_width_focused
:
Int
static
val
mtrl_textinput_outline_box_expanded_padding
:
Int
static
val
mtrl_toolbar_default_height
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
static
val
shr_product_card_image_height
:
Int
static
val
shr_product_grid_reveal_height
:
Int
static
val
shr_product_grid_spacing
:
Int
static
val
shr_product_grid_spacing_small
:
Int
static
val
shr_staggered_product_grid_card_height_landscape
:
Int
static
val
shr_staggered_product_grid_card_height_portrait
:
Int
static
val
shr_staggered_product_grid_card_width_landscape
:
Int
static
val
shr_staggered_product_grid_card_width_portrait
:
Int
static
val
shr_staggered_product_grid_margin_top_first
:
Int
static
val
shr_staggered_product_grid_margin_top_second
:
Int
static
val
shr_staggered_product_grid_margin_top_third
:
Int
static
val
shr_staggered_product_grid_spacing_large
:
Int
static
val
shr_staggered_product_grid_spacing_small
:
Int
static
val
subtitle_corner_radius
:
Int
static
val
subtitle_outline_width
:
Int
static
val
subtitle_shadow_offset
:
Int
static
val
subtitle_shadow_radius
:
Int
static
val
tooltip_corner_radius
:
Int
static
val
tooltip_horizontal_padding
:
Int
static
val
tooltip_margin
:
Int
static
val
tooltip_precise_anchor_extra_offset
:
Int
static
val
tooltip_precise_anchor_threshold
:
Int
static
val
tooltip_vertical_padding
:
Int
static
val
tooltip_y_offset_non_touch
:
Int
static
val
tooltip_y_offset_touch
:
Int
class
drawable
Module Contents
drawable
(
)
static
val
abc_ab_share_pack_mtrl_alpha
:
Int
static
val
abc_action_bar_item_background_material
:
Int
static
val
abc_btn_borderless_material
:
Int
static
val
abc_btn_check_material
:
Int
static
val
abc_btn_check_to_on_mtrl_000
:
Int
static
val
abc_btn_check_to_on_mtrl_015
:
Int
static
val
abc_btn_colored_material
:
Int
static
val
abc_btn_default_mtrl_shape
:
Int
static
val
abc_btn_radio_material
:
Int
static
val
abc_btn_radio_to_on_mtrl_000
:
Int
static
val
abc_btn_radio_to_on_mtrl_015
:
Int
static
val
abc_btn_switch_to_on_mtrl_00001
:
Int
static
val
abc_btn_switch_to_on_mtrl_00012
:
Int
static
val
abc_cab_background_internal_bg
:
Int
static
val
abc_cab_background_top_material
:
Int
static
val
abc_cab_background_top_mtrl_alpha
:
Int
static
val
abc_control_background_material
:
Int
static
val
abc_dialog_material_background
:
Int
static
val
abc_edit_text_material
:
Int
static
val
abc_ic_ab_back_material
:
Int
static
val
abc_ic_arrow_drop_right_black_24dp
:
Int
static
val
abc_ic_clear_material
:
Int
static
val
abc_ic_commit_search_api_mtrl_alpha
:
Int
static
val
abc_ic_go_search_api_material
:
Int
static
val
abc_ic_menu_copy_mtrl_am_alpha
:
Int
static
val
abc_ic_menu_cut_mtrl_alpha
:
Int
static
val
abc_ic_menu_overflow_material
:
Int
static
val
abc_ic_menu_paste_mtrl_am_alpha
:
Int
static
val
abc_ic_menu_selectall_mtrl_alpha
:
Int
static
val
abc_ic_menu_share_mtrl_alpha
:
Int
static
val
abc_ic_search_api_material
:
Int
static
val
abc_ic_star_black_16dp
:
Int
static
val
abc_ic_star_black_36dp
:
Int
static
val
abc_ic_star_black_48dp
:
Int
static
val
abc_ic_star_half_black_16dp
:
Int
static
val
abc_ic_star_half_black_36dp
:
Int
static
val
abc_ic_star_half_black_48dp
:
Int
static
val
abc_ic_voice_search_api_material
:
Int
static
val
abc_item_background_holo_dark
:
Int
static
val
abc_item_background_holo_light
:
Int
static
val
abc_list_divider_material
:
Int
static
val
abc_list_divider_mtrl_alpha
:
Int
static
val
abc_list_focused_holo
:
Int
static
val
abc_list_longpressed_holo
:
Int
static
val
abc_list_pressed_holo_dark
:
Int
static
val
abc_list_pressed_holo_light
:
Int
static
val
abc_list_selector_background_transition_holo_dark
:
Int
static
val
abc_list_selector_background_transition_holo_light
:
Int
static
val
abc_list_selector_disabled_holo_dark
:
Int
static
val
abc_list_selector_disabled_holo_light
:
Int
static
val
abc_list_selector_holo_dark
:
Int
static
val
abc_list_selector_holo_light
:
Int
static
val
abc_menu_hardkey_panel_mtrl_mult
:
Int
static
val
abc_popup_background_mtrl_mult
:
Int
static
val
abc_ratingbar_indicator_material
:
Int
static
val
abc_ratingbar_material
:
Int
static
val
abc_ratingbar_small_material
:
Int
static
val
abc_scrubber_control_off_mtrl_alpha
:
Int
static
val
abc_scrubber_control_to_pressed_mtrl_000
:
Int
static
val
abc_scrubber_control_to_pressed_mtrl_005
:
Int
static
val
abc_scrubber_primary_mtrl_alpha
:
Int
static
val
abc_scrubber_track_mtrl_alpha
:
Int
static
val
abc_seekbar_thumb_material
:
Int
static
val
abc_seekbar_tick_mark_material
:
Int
static
val
abc_seekbar_track_material
:
Int
static
val
abc_spinner_mtrl_am_alpha
:
Int
static
val
abc_spinner_textfield_background_material
:
Int
static
val
abc_switch_thumb_material
:
Int
static
val
abc_switch_track_mtrl_alpha
:
Int
static
val
abc_tab_indicator_material
:
Int
static
val
abc_tab_indicator_mtrl_alpha
:
Int
static
val
abc_text_cursor_material
:
Int
static
val
abc_text_select_handle_left_mtrl_dark
:
Int
static
val
abc_text_select_handle_left_mtrl_light
:
Int
static
val
abc_text_select_handle_middle_mtrl_dark
:
Int
static
val
abc_text_select_handle_middle_mtrl_light
:
Int
static
val
abc_text_select_handle_right_mtrl_dark
:
Int
static
val
abc_text_select_handle_right_mtrl_light
:
Int
static
val
abc_textfield_activated_mtrl_alpha
:
Int
static
val
abc_textfield_default_mtrl_alpha
:
Int
static
val
abc_textfield_search_activated_mtrl_alpha
:
Int
static
val
abc_textfield_search_default_mtrl_alpha
:
Int
static
val
abc_textfield_search_material
:
Int
static
val
abc_vector_test
:
Int
static
val
avd_hide_password
:
Int
static
val
avd_show_password
:
Int
static
val
design_bottom_navigation_item_background
:
Int
static
val
design_fab_background
:
Int
static
val
design_ic_visibility
:
Int
static
val
design_ic_visibility_off
:
Int
static
val
design_password_eye
:
Int
static
val
design_snackbar_background
:
Int
static
val
ic_add_24dp
:
Int
static
val
ic_favorite_24dp
:
Int
static
val
ic_favorite_border_24dp
:
Int
static
val
ic_icon
:
Int
static
val
ic_launcher_background
:
Int
static
val
ic_launcher_foreground
:
Int
static
val
ic_mtrl_chip_checked_black
:
Int
static
val
ic_mtrl_chip_checked_circle
:
Int
static
val
ic_mtrl_chip_close_circle
:
Int
static
val
ic_no_internet_background
:
Int
static
val
ic_registration_background
:
Int
static
val
ic_search_24dp
:
Int
static
val
ic_star_border_16dp
:
Int
static
val
mtrl_snackbar_background
:
Int
static
val
mtrl_tabs_default_indicator
:
Int
static
val
navigation_empty_icon
:
Int
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
static
val
tooltip_frame_dark
:
Int
static
val
tooltip_frame_light
:
Int
class
id
Module Contents
id
(
)
static
val
ALT
:
Int
static
val
CTRL
:
Int
static
val
FUNCTION
:
Int
static
val
META
:
Int
static
val
SHIFT
:
Int
static
val
SYM
:
Int
static
val
account_menu
:
Int
static
val
action0
:
Int
static
val
action_bar
:
Int
static
val
action_bar_activity_content
:
Int
static
val
action_bar_container
:
Int
static
val
action_bar_root
:
Int
static
val
action_bar_spinner
:
Int
static
val
action_bar_subtitle
:
Int
static
val
action_bar_title
:
Int
static
val
action_container
:
Int
static
val
action_context_bar
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_menu_divider
:
Int
static
val
action_menu_presenter
:
Int
static
val
action_mode_bar
:
Int
static
val
action_mode_bar_stub
:
Int
static
val
action_mode_close_button
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
activity_chooser_view_content
:
Int
static
val
add
:
Int
static
val
alertTitle
:
Int
static
val
all
:
Int
static
val
always
:
Int
static
val
amount_of_likes
:
Int
static
val
amount_of_posts
:
Int
static
val
async
:
Int
static
val
author_name
:
Int
static
val
auto
:
Int
static
val
back_button
:
Int
static
val
barrier
:
Int
static
val
beginning
:
Int
static
val
blocking
:
Int
static
val
bottom
:
Int
static
val
buttonPanel
:
Int
static
val
cancel_action
:
Int
static
val
center
:
Int
static
val
center_horizontal
:
Int
static
val
center_vertical
:
Int
static
val
chains
:
Int
static
val
checkbox
:
Int
static
val
chronometer
:
Int
static
val
city_image
:
Int
static
val
city_list
:
Int
static
val
city_text
:
Int
static
val
clip_horizontal
:
Int
static
val
clip_vertical
:
Int
static
val
collapseActionView
:
Int
static
val
confirm_password_edit_text_reg
:
Int
static
val
confirm_password_text_input_reg
:
Int
static
val
confirm_registreer_button
:
Int
static
val
container
:
Int
static
val
container_add_post
:
Int
static
val
content
:
Int
static
val
contentPanel
:
Int
static
val
coordinator
:
Int
static
val
custom
:
Int
static
val
customPanel
:
Int
static
val
date_post
:
Int
static
val
decor_content_parent
:
Int
static
val
default_activity_button
:
Int
static
val
design_bottom_sheet
:
Int
static
val
design_menu_item_action_area
:
Int
static
val
design_menu_item_action_area_stub
:
Int
static
val
design_menu_item_text
:
Int
static
val
design_navigation_view
:
Int
static
val
dimensions
:
Int
static
val
direct
:
Int
static
val
disableHome
:
Int
static
val
edit_query
:
Int
static
val
end
:
Int
static
val
end_padder
:
Int
static
val
enterAlways
:
Int
static
val
enterAlwaysCollapsed
:
Int
static
val
exitUntilCollapsed
:
Int
static
val
expand_activities_button
:
Int
static
val
expanded_menu
:
Int
static
val
fill
:
Int
static
val
fill_horizontal
:
Int
static
val
fill_vertical
:
Int
static
val
filled
:
Int
static
val
fixed
:
Int
static
val
floatingActionButton
:
Int
static
val
forever
:
Int
static
val
ghost_view
:
Int
static
val
gone
:
Int
static
val
group_divider
:
Int
static
val
groups
:
Int
static
val
home
:
Int
static
val
homeAsUp
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
ifRoom
:
Int
static
val
image
:
Int
static
val
imageView
:
Int
static
val
info
:
Int
static
val
invisible
:
Int
static
val
italic
:
Int
static
val
item_touch_helper_previous_elevation
:
Int
static
val
labeled
:
Int
static
val
largeLabel
:
Int
static
val
left
:
Int
static
val
like_action_button
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
listMode
:
Int
static
val
list_item
:
Int
static
val
masked
:
Int
static
val
media_actions
:
Int
static
val
message
:
Int
static
val
middle
:
Int
static
val
mini
:
Int
static
val
mtrl_child_content_container
:
Int
static
val
mtrl_internal_children_alpha_tag
:
Int
static
val
multiply
:
Int
static
val
navigation_header_container
:
Int
static
val
never
:
Int
static
val
next_button
:
Int
static
val
none
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
outline
:
Int
static
val
packed
:
Int
static
val
parallax
:
Int
static
val
parent
:
Int
static
val
parentPanel
:
Int
static
val
parent_matrix
:
Int
static
val
password_edit_text
:
Int
static
val
password_edit_text_reg
:
Int
static
val
password_text_input
:
Int
static
val
password_text_input_reg
:
Int
static
val
percent
:
Int
static
val
pin
:
Int
static
val
post_body
:
Int
static
val
post_body_edit_text
:
Int
static
val
post_body_text_input
:
Int
static
val
post_button
:
Int
static
val
post_title_edit_text
:
Int
static
val
post_title_text_input
:
Int
static
val
progress_circular
:
Int
static
val
progress_horizontal
:
Int
static
val
radio
:
Int
static
val
recycleView
:
Int
static
val
recycler_view
:
Int
static
val
recycler_view_posts
:
Int
static
val
registreer_button
:
Int
static
val
right
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
save_image_matrix
:
Int
static
val
save_non_transition_alpha
:
Int
static
val
save_scale_type
:
Int
static
val
screen
:
Int
static
val
scroll
:
Int
static
val
scrollIndicatorDown
:
Int
static
val
scrollIndicatorUp
:
Int
static
val
scrollView
:
Int
static
val
scrollable
:
Int
static
val
search_badge
:
Int
static
val
search_bar
:
Int
static
val
search_button
:
Int
static
val
search_close_btn
:
Int
static
val
search_edit_frame
:
Int
static
val
search_go_btn
:
Int
static
val
search_mag_icon
:
Int
static
val
search_menu
:
Int
static
val
search_plate
:
Int
static
val
search_src_text
:
Int
static
val
search_voice_btn
:
Int
static
val
select_dialog_listview
:
Int
static
val
selected
:
Int
static
val
shortcut
:
Int
static
val
showCustom
:
Int
static
val
showHome
:
Int
static
val
showTitle
:
Int
static
val
smallLabel
:
Int
static
val
snackbar_action
:
Int
static
val
snackbar_text
:
Int
static
val
snap
:
Int
static
val
snapMargins
:
Int
static
val
spacer
:
Int
static
val
spinner_pinboards
:
Int
static
val
split_action_bar
:
Int
static
val
spread
:
Int
static
val
spread_inside
:
Int
static
val
src_atop
:
Int
static
val
src_in
:
Int
static
val
src_over
:
Int
static
val
standard
:
Int
static
val
start
:
Int
static
val
status_bar_latest_event_content
:
Int
static
val
stretch
:
Int
static
val
submenuarrow
:
Int
static
val
submit_area
:
Int
static
val
tabMode
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
textSpacerNoButtons
:
Int
static
val
textSpacerNoTitle
:
Int
static
val
textStart
:
Int
static
val
textView2
:
Int
static
val
text_input_password_toggle
:
Int
static
val
textinput_counter
:
Int
static
val
textinput_error
:
Int
static
val
textinput_helper_text
:
Int
static
val
time
:
Int
static
val
title
:
Int
static
val
titleDividerNoCustom
:
Int
static
val
title_post
:
Int
static
val
title_template
:
Int
static
val
top
:
Int
static
val
topPanel
:
Int
static
val
touch_outside
:
Int
static
val
transition_current_scene
:
Int
static
val
transition_layout_save
:
Int
static
val
transition_position
:
Int
static
val
transition_scene_layoutid_cache
:
Int
static
val
transition_transform
:
Int
static
val
uniform
:
Int
static
val
unlabeled
:
Int
static
val
up
:
Int
static
val
useLogo
:
Int
static
val
username_edit_text
:
Int
static
val
username_edit_text_reg
:
Int
static
val
username_text_input
:
Int
static
val
username_text_input_reg
:
Int
static
val
view_offset_helper
:
Int
static
val
visible
:
Int
static
val
withText
:
Int
static
val
wrap
:
Int
static
val
wrap_content
:
Int
class
integer
Module Contents
integer
(
)
static
val
abc_config_activityDefaultDur
:
Int
static
val
abc_config_activityShortDur
:
Int
static
val
app_bar_elevation_anim_duration
:
Int
static
val
bottom_sheet_slide_duration
:
Int
static
val
cancel_button_image_alpha
:
Int
static
val
config_tooltipAnimTime
:
Int
static
val
design_snackbar_text_max_lines
:
Int
static
val
design_tab_indicator_anim_duration_ms
:
Int
static
val
hide_password_duration
:
Int
static
val
mtrl_btn_anim_delay_ms
:
Int
static
val
mtrl_btn_anim_duration_ms
:
Int
static
val
mtrl_chip_anim_duration
:
Int
static
val
mtrl_tab_indicator_anim_duration_ms
:
Int
static
val
show_password_duration
:
Int
static
val
status_bar_notification_info_maxnum
:
Int
class
interpolator
Module Contents
interpolator
(
)
static
val
mtrl_fast_out_linear_in
:
Int
static
val
mtrl_fast_out_slow_in
:
Int
static
val
mtrl_linear
:
Int
static
val
mtrl_linear_out_slow_in
:
Int
class
layout
Module Contents
layout
(
)
static
val
abc_action_bar_title_item
:
Int
static
val
abc_action_bar_up_container
:
Int
static
val
abc_action_menu_item_layout
:
Int
static
val
abc_action_menu_layout
:
Int
static
val
abc_action_mode_bar
:
Int
static
val
abc_action_mode_close_item_material
:
Int
static
val
abc_activity_chooser_view
:
Int
static
val
abc_activity_chooser_view_list_item
:
Int
static
val
abc_alert_dialog_button_bar_material
:
Int
static
val
abc_alert_dialog_material
:
Int
static
val
abc_alert_dialog_title_material
:
Int
static
val
abc_cascading_menu_item_layout
:
Int
static
val
abc_dialog_title_material
:
Int
static
val
abc_expanded_menu_layout
:
Int
static
val
abc_list_menu_item_checkbox
:
Int
static
val
abc_list_menu_item_icon
:
Int
static
val
abc_list_menu_item_layout
:
Int
static
val
abc_list_menu_item_radio
:
Int
static
val
abc_popup_menu_header_item_layout
:
Int
static
val
abc_popup_menu_item_layout
:
Int
static
val
abc_screen_content_include
:
Int
static
val
abc_screen_simple
:
Int
static
val
abc_screen_simple_overlay_action_mode
:
Int
static
val
abc_screen_toolbar
:
Int
static
val
abc_search_dropdown_item_icons_2line
:
Int
static
val
abc_search_view
:
Int
static
val
abc_select_dialog_material
:
Int
static
val
abc_tooltip
:
Int
static
val
account_fragment
:
Int
static
val
activity_main
:
Int
static
val
activity_pinboard_details
:
Int
static
val
activity_pinboards
:
Int
static
val
add_post_fragment
:
Int
static
val
design_bottom_navigation_item
:
Int
static
val
design_bottom_sheet_dialog
:
Int
static
val
design_layout_snackbar
:
Int
static
val
design_layout_snackbar_include
:
Int
static
val
design_layout_tab_icon
:
Int
static
val
design_layout_tab_text
:
Int
static
val
design_menu_item_action_area
:
Int
static
val
design_navigation_item
:
Int
static
val
design_navigation_item_header
:
Int
static
val
design_navigation_item_separator
:
Int
static
val
design_navigation_item_subheader
:
Int
static
val
design_navigation_menu
:
Int
static
val
design_navigation_menu_item
:
Int
static
val
design_text_input_password_icon
:
Int
static
val
geen_internet_fragment
:
Int
static
val
login_fragment
:
Int
static
val
mtrl_layout_snackbar
:
Int
static
val
mtrl_layout_snackbar_include
:
Int
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_media_action
:
Int
static
val
notification_media_cancel_action
:
Int
static
val
notification_template_big_media
:
Int
static
val
notification_template_big_media_custom
:
Int
static
val
notification_template_big_media_narrow
:
Int
static
val
notification_template_big_media_narrow_custom
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_lines_media
:
Int
static
val
notification_template_media
:
Int
static
val
notification_template_media_custom
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
static
val
pinboard_item
:
Int
static
val
pinboard_list_fragment
:
Int
static
val
post_item
:
Int
static
val
registreer_fragment
:
Int
static
val
select_dialog_item_material
:
Int
static
val
select_dialog_multichoice_material
:
Int
static
val
select_dialog_singlechoice_material
:
Int
static
val
support_simple_spinner_dropdown_item
:
Int
class
menu
Module Contents
menu
(
)
static
val
search_menu
:
Int
class
mipmap
Module Contents
mipmap
(
)
static
val
ic_launcher
:
Int
static
val
ic_launcher_foreground
:
Int
static
val
ic_launcher_round
:
Int
class
string
Module Contents
string
(
)
static
val
abc_action_bar_home_description
:
Int
static
val
abc_action_bar_up_description
:
Int
static
val
abc_action_menu_overflow_description
:
Int
static
val
abc_action_mode_done
:
Int
static
val
abc_activity_chooser_view_see_all
:
Int
static
val
abc_activitychooserview_choose_application
:
Int
static
val
abc_capital_off
:
Int
static
val
abc_capital_on
:
Int
static
val
abc_font_family_body_1_material
:
Int
static
val
abc_font_family_body_2_material
:
Int
static
val
abc_font_family_button_material
:
Int
static
val
abc_font_family_caption_material
:
Int
static
val
abc_font_family_display_1_material
:
Int
static
val
abc_font_family_display_2_material
:
Int
static
val
abc_font_family_display_3_material
:
Int
static
val
abc_font_family_display_4_material
:
Int
static
val
abc_font_family_headline_material
:
Int
static
val
abc_font_family_menu_material
:
Int
static
val
abc_font_family_subhead_material
:
Int
static
val
abc_font_family_title_material
:
Int
static
val
abc_menu_alt_shortcut_label
:
Int
static
val
abc_menu_ctrl_shortcut_label
:
Int
static
val
abc_menu_delete_shortcut_label
:
Int
static
val
abc_menu_enter_shortcut_label
:
Int
static
val
abc_menu_function_shortcut_label
:
Int
static
val
abc_menu_meta_shortcut_label
:
Int
static
val
abc_menu_shift_shortcut_label
:
Int
static
val
abc_menu_space_shortcut_label
:
Int
static
val
abc_menu_sym_shortcut_label
:
Int
static
val
abc_prepend_shortcut_label
:
Int
static
val
abc_search_hint
:
Int
static
val
abc_searchview_description_clear
:
Int
static
val
abc_searchview_description_query
:
Int
static
val
abc_searchview_description_search
:
Int
static
val
abc_searchview_description_submit
:
Int
static
val
abc_searchview_description_voice
:
Int
static
val
abc_shareactionprovider_share_with
:
Int
static
val
abc_shareactionprovider_share_with_application
:
Int
static
val
abc_toolbar_collapse_description
:
Int
static
val
add_post_title
:
Int
static
val
app_name
:
Int
static
val
appbar_scrolling_view_behavior
:
Int
static
val
back_button
:
Int
static
val
bottom_sheet_behavior
:
Int
static
val
character_counter_content_description
:
Int
static
val
character_counter_pattern
:
Int
static
val
error_confirm_password
:
Int
static
val
error_password
:
Int
static
val
error_post_field_empty
:
Int
static
val
error_useralreadyexists
:
Int
static
val
error_username
:
Int
static
val
error_wrong_user_or_password
:
Int
static
val
fab_transformation_scrim_behavior
:
Int
static
val
fab_transformation_sheet_behavior
:
Int
static
val
hide_bottom_view_on_scroll_behavior
:
Int
static
val
hint_confirm_password
:
Int
static
val
hint_password
:
Int
static
val
hint_post_body
:
Int
static
val
hint_post_title
:
Int
static
val
hint_search
:
Int
static
val
hint_username
:
Int
static
val
key_pinboard
:
Int
static
val
mtrl_chip_close_icon_content_description
:
Int
static
val
next_button
:
Int
static
val
no_internet_connection
:
Int
static
val
no_internet_connection_description
:
Int
static
val
no_internet_connection_solution
:
Int
static
val
password_toggle_content_description
:
Int
static
val
path_password_eye
:
Int
static
val
path_password_eye_mask_strike_through
:
Int
static
val
path_password_eye_mask_visible
:
Int
static
val
path_password_strike_through
:
Int
static
val
pinboard_card_amount_of_posts
:
Int
static
val
pinboard_details_title
:
Int
static
val
post_button
:
Int
static
val
register_button
:
Int
static
val
registration_background_description
:
Int
static
val
search_menu_title
:
Int
static
val
something_went_wrong
:
Int
static
val
sp_token_key
:
Int
static
val
sp_token_likedPosts
:
Int
static
val
sp_token_password
:
Int
static
val
sp_token_username
:
Int
static
val
status_bar_notification_info_overflow
:
Int
static
val
you_are_offline
:
Int
class
style
Module Contents
style
(
)
static
val
AlertDialog_AppCompat
:
Int
static
val
AlertDialog_AppCompat_Light
:
Int
static
val
Animation_AppCompat_Dialog
:
Int
static
val
Animation_AppCompat_DropDownUp
:
Int
static
val
Animation_AppCompat_Tooltip
:
Int
static
val
Animation_Design_BottomSheetDialog
:
Int
static
val
Base_AlertDialog_AppCompat
:
Int
static
val
Base_AlertDialog_AppCompat_Light
:
Int
static
val
Base_Animation_AppCompat_Dialog
:
Int
static
val
Base_Animation_AppCompat_DropDownUp
:
Int
static
val
Base_Animation_AppCompat_Tooltip
:
Int
static
val
Base_CardView
:
Int
static
val
Base_DialogWindowTitleBackground_AppCompat
:
Int
static
val
Base_DialogWindowTitle_AppCompat
:
Int
static
val
Base_TextAppearance_AppCompat
:
Int
static
val
Base_TextAppearance_AppCompat_Body1
:
Int
static
val
Base_TextAppearance_AppCompat_Body2
:
Int
static
val
Base_TextAppearance_AppCompat_Button
:
Int
static
val
Base_TextAppearance_AppCompat_Caption
:
Int
static
val
Base_TextAppearance_AppCompat_Display1
:
Int
static
val
Base_TextAppearance_AppCompat_Display2
:
Int
static
val
Base_TextAppearance_AppCompat_Display3
:
Int
static
val
Base_TextAppearance_AppCompat_Display4
:
Int
static
val
Base_TextAppearance_AppCompat_Headline
:
Int
static
val
Base_TextAppearance_AppCompat_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Large
:
Int
static
val
Base_TextAppearance_AppCompat_Large_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
:
Int
static
val
Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
:
Int
static
val
Base_TextAppearance_AppCompat_Medium
:
Int
static
val
Base_TextAppearance_AppCompat_Medium_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Menu
:
Int
static
val
Base_TextAppearance_AppCompat_SearchResult
:
Int
static
val
Base_TextAppearance_AppCompat_SearchResult_Subtitle
:
Int
static
val
Base_TextAppearance_AppCompat_SearchResult_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Small
:
Int
static
val
Base_TextAppearance_AppCompat_Small_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Subhead
:
Int
static
val
Base_TextAppearance_AppCompat_Subhead_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Title_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Tooltip
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Menu
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionMode_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button_Colored
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_DropDownItem
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_PopupMenu_Header
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_PopupMenu_Large
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_PopupMenu_Small
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Switch
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem
:
Int
static
val
Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item
:
Int
static
val
Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle
:
Int
static
val
Base_TextAppearance_Widget_AppCompat_Toolbar_Title
:
Int
static
val
Base_ThemeOverlay_AppCompat
:
Int
static
val
Base_ThemeOverlay_AppCompat_ActionBar
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dark
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dark_ActionBar
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dialog
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dialog_Alert
:
Int
static
val
Base_ThemeOverlay_AppCompat_Light
:
Int
static
val
Base_ThemeOverlay_MaterialComponents_Dialog
:
Int
static
val
Base_ThemeOverlay_MaterialComponents_Dialog_Alert
:
Int
static
val
Base_Theme_AppCompat
:
Int
static
val
Base_Theme_AppCompat_CompactMenu
:
Int
static
val
Base_Theme_AppCompat_Dialog
:
Int
static
val
Base_Theme_AppCompat_DialogWhenLarge
:
Int
static
val
Base_Theme_AppCompat_Dialog_Alert
:
Int
static
val
Base_Theme_AppCompat_Dialog_FixedSize
:
Int
static
val
Base_Theme_AppCompat_Dialog_MinWidth
:
Int
static
val
Base_Theme_AppCompat_Light
:
Int
static
val
Base_Theme_AppCompat_Light_DarkActionBar
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog
:
Int
static
val
Base_Theme_AppCompat_Light_DialogWhenLarge
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog_Alert
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog_FixedSize
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog_MinWidth
:
Int
static
val
Base_Theme_MaterialComponents
:
Int
static
val
Base_Theme_MaterialComponents_Bridge
:
Int
static
val
Base_Theme_MaterialComponents_CompactMenu
:
Int
static
val
Base_Theme_MaterialComponents_Dialog
:
Int
static
val
Base_Theme_MaterialComponents_DialogWhenLarge
:
Int
static
val
Base_Theme_MaterialComponents_Dialog_Alert
:
Int
static
val
Base_Theme_MaterialComponents_Dialog_FixedSize
:
Int
static
val
Base_Theme_MaterialComponents_Dialog_MinWidth
:
Int
static
val
Base_Theme_MaterialComponents_Light
:
Int
static
val
Base_Theme_MaterialComponents_Light_Bridge
:
Int
static
val
Base_Theme_MaterialComponents_Light_DarkActionBar
:
Int
static
val
Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge
:
Int
static
val
Base_Theme_MaterialComponents_Light_Dialog
:
Int
static
val
Base_Theme_MaterialComponents_Light_DialogWhenLarge
:
Int
static
val
Base_Theme_MaterialComponents_Light_Dialog_Alert
:
Int
static
val
Base_Theme_MaterialComponents_Light_Dialog_FixedSize
:
Int
static
val
Base_Theme_MaterialComponents_Light_Dialog_MinWidth
:
Int
static
val
Base_V14_ThemeOverlay_MaterialComponents_Dialog
:
Int
static
val
Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert
:
Int
static
val
Base_V14_Theme_MaterialComponents
:
Int
static
val
Base_V14_Theme_MaterialComponents_Bridge
:
Int
static
val
Base_V14_Theme_MaterialComponents_Dialog
:
Int
static
val
Base_V14_Theme_MaterialComponents_Light
:
Int
static
val
Base_V14_Theme_MaterialComponents_Light_Bridge
:
Int
static
val
Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge
:
Int
static
val
Base_V14_Theme_MaterialComponents_Light_Dialog
:
Int
static
val
Base_V21_ThemeOverlay_AppCompat_Dialog
:
Int
static
val
Base_V21_Theme_AppCompat
:
Int
static
val
Base_V21_Theme_AppCompat_Dialog
:
Int
static
val
Base_V21_Theme_AppCompat_Light
:
Int
static
val
Base_V21_Theme_AppCompat_Light_Dialog
:
Int
static
val
Base_V22_Theme_AppCompat
:
Int
static
val
Base_V22_Theme_AppCompat_Light
:
Int
static
val
Base_V23_Theme_AppCompat
:
Int
static
val
Base_V23_Theme_AppCompat_Light
:
Int
static
val
Base_V26_Theme_AppCompat
:
Int
static
val
Base_V26_Theme_AppCompat_Light
:
Int
static
val
Base_V26_Widget_AppCompat_Toolbar
:
Int
static
val
Base_V28_Theme_AppCompat
:
Int
static
val
Base_V28_Theme_AppCompat_Light
:
Int
static
val
Base_V7_ThemeOverlay_AppCompat_Dialog
:
Int
static
val
Base_V7_Theme_AppCompat
:
Int
static
val
Base_V7_Theme_AppCompat_Dialog
:
Int
static
val
Base_V7_Theme_AppCompat_Light
:
Int
static
val
Base_V7_Theme_AppCompat_Light_Dialog
:
Int
static
val
Base_V7_Widget_AppCompat_AutoCompleteTextView
:
Int
static
val
Base_V7_Widget_AppCompat_EditText
:
Int
static
val
Base_V7_Widget_AppCompat_Toolbar
:
Int
static
val
Base_Widget_AppCompat_ActionBar
:
Int
static
val
Base_Widget_AppCompat_ActionBar_Solid
:
Int
static
val
Base_Widget_AppCompat_ActionBar_TabBar
:
Int
static
val
Base_Widget_AppCompat_ActionBar_TabText
:
Int
static
val
Base_Widget_AppCompat_ActionBar_TabView
:
Int
static
val
Base_Widget_AppCompat_ActionButton
:
Int
static
val
Base_Widget_AppCompat_ActionButton_CloseMode
:
Int
static
val
Base_Widget_AppCompat_ActionButton_Overflow
:
Int
static
val
Base_Widget_AppCompat_ActionMode
:
Int
static
val
Base_Widget_AppCompat_ActivityChooserView
:
Int
static
val
Base_Widget_AppCompat_AutoCompleteTextView
:
Int
static
val
Base_Widget_AppCompat_Button
:
Int
static
val
Base_Widget_AppCompat_ButtonBar
:
Int
static
val
Base_Widget_AppCompat_ButtonBar_AlertDialog
:
Int
static
val
Base_Widget_AppCompat_Button_Borderless
:
Int
static
val
Base_Widget_AppCompat_Button_Borderless_Colored
:
Int
static
val
Base_Widget_AppCompat_Button_ButtonBar_AlertDialog
:
Int
static
val
Base_Widget_AppCompat_Button_Colored
:
Int
static
val
Base_Widget_AppCompat_Button_Small
:
Int
static
val
Base_Widget_AppCompat_CompoundButton_CheckBox
:
Int
static
val
Base_Widget_AppCompat_CompoundButton_RadioButton
:
Int
static
val
Base_Widget_AppCompat_CompoundButton_Switch
:
Int
static
val
Base_Widget_AppCompat_DrawerArrowToggle
:
Int
static
val
Base_Widget_AppCompat_DrawerArrowToggle_Common
:
Int
static
val
Base_Widget_AppCompat_DropDownItem_Spinner
:
Int
static
val
Base_Widget_AppCompat_EditText
:
Int
static
val
Base_Widget_AppCompat_ImageButton
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_Solid
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabBar
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabText
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabView
:
Int
static
val
Base_Widget_AppCompat_Light_PopupMenu
:
Int
static
val
Base_Widget_AppCompat_Light_PopupMenu_Overflow
:
Int
static
val
Base_Widget_AppCompat_ListMenuView
:
Int
static
val
Base_Widget_AppCompat_ListPopupWindow
:
Int
static
val
Base_Widget_AppCompat_ListView
:
Int
static
val
Base_Widget_AppCompat_ListView_DropDown
:
Int
static
val
Base_Widget_AppCompat_ListView_Menu
:
Int
static
val
Base_Widget_AppCompat_PopupMenu
:
Int
static
val
Base_Widget_AppCompat_PopupMenu_Overflow
:
Int
static
val
Base_Widget_AppCompat_PopupWindow
:
Int
static
val
Base_Widget_AppCompat_ProgressBar
:
Int
static
val
Base_Widget_AppCompat_ProgressBar_Horizontal
:
Int
static
val
Base_Widget_AppCompat_RatingBar
:
Int
static
val
Base_Widget_AppCompat_RatingBar_Indicator
:
Int
static
val
Base_Widget_AppCompat_RatingBar_Small
:
Int
static
val
Base_Widget_AppCompat_SearchView
:
Int
static
val
Base_Widget_AppCompat_SearchView_ActionBar
:
Int
static
val
Base_Widget_AppCompat_SeekBar
:
Int
static
val
Base_Widget_AppCompat_SeekBar_Discrete
:
Int
static
val
Base_Widget_AppCompat_Spinner
:
Int
static
val
Base_Widget_AppCompat_Spinner_Underlined
:
Int
static
val
Base_Widget_AppCompat_TextView_SpinnerItem
:
Int
static
val
Base_Widget_AppCompat_Toolbar
:
Int
static
val
Base_Widget_AppCompat_Toolbar_Button_Navigation
:
Int
static
val
Base_Widget_Design_TabLayout
:
Int
static
val
Base_Widget_MaterialComponents_Chip
:
Int
static
val
Base_Widget_MaterialComponents_TextInputEditText
:
Int
static
val
Base_Widget_MaterialComponents_TextInputLayout
:
Int
static
val
CardView
:
Int
static
val
CardView_Dark
:
Int
static
val
CardView_Light
:
Int
static
val
Platform_AppCompat
:
Int
static
val
Platform_AppCompat_Light
:
Int
static
val
Platform_MaterialComponents
:
Int
static
val
Platform_MaterialComponents_Dialog
:
Int
static
val
Platform_MaterialComponents_Light
:
Int
static
val
Platform_MaterialComponents_Light_Dialog
:
Int
static
val
Platform_ThemeOverlay_AppCompat
:
Int
static
val
Platform_ThemeOverlay_AppCompat_Dark
:
Int
static
val
Platform_ThemeOverlay_AppCompat_Light
:
Int
static
val
Platform_V21_AppCompat
:
Int
static
val
Platform_V21_AppCompat_Light
:
Int
static
val
Platform_V25_AppCompat
:
Int
static
val
Platform_V25_AppCompat_Light
:
Int
static
val
Platform_Widget_AppCompat_Spinner
:
Int
static
val
RtlOverlay_DialogWindowTitle_AppCompat
:
Int
static
val
RtlOverlay_Widget_AppCompat_ActionBar_TitleItem
:
Int
static
val
RtlOverlay_Widget_AppCompat_DialogTitle_Icon
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_Text
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_Title
:
Int
static
val
RtlOverlay_Widget_AppCompat_SearchView_MagIcon
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Query
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Text
:
Int
static
val
RtlUnderlay_Widget_AppCompat_ActionButton
:
Int
static
val
RtlUnderlay_Widget_AppCompat_ActionButton_Overflow
:
Int
static
val
TextAppearance_AppCompat
:
Int
static
val
TextAppearance_AppCompat_Body1
:
Int
static
val
TextAppearance_AppCompat_Body2
:
Int
static
val
TextAppearance_AppCompat_Button
:
Int
static
val
TextAppearance_AppCompat_Caption
:
Int
static
val
TextAppearance_AppCompat_Display1
:
Int
static
val
TextAppearance_AppCompat_Display2
:
Int
static
val
TextAppearance_AppCompat_Display3
:
Int
static
val
TextAppearance_AppCompat_Display4
:
Int
static
val
TextAppearance_AppCompat_Headline
:
Int
static
val
TextAppearance_AppCompat_Inverse
:
Int
static
val
TextAppearance_AppCompat_Large
:
Int
static
val
TextAppearance_AppCompat_Large_Inverse
:
Int
static
val
TextAppearance_AppCompat_Light_SearchResult_Subtitle
:
Int
static
val
TextAppearance_AppCompat_Light_SearchResult_Title
:
Int
static
val
TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
:
Int
static
val
TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
:
Int
static
val
TextAppearance_AppCompat_Medium
:
Int
static
val
TextAppearance_AppCompat_Medium_Inverse
:
Int
static
val
TextAppearance_AppCompat_Menu
:
Int
static
val
TextAppearance_AppCompat_SearchResult_Subtitle
:
Int
static
val
TextAppearance_AppCompat_SearchResult_Title
:
Int
static
val
TextAppearance_AppCompat_Small
:
Int
static
val
TextAppearance_AppCompat_Small_Inverse
:
Int
static
val
TextAppearance_AppCompat_Subhead
:
Int
static
val
TextAppearance_AppCompat_Subhead_Inverse
:
Int
static
val
TextAppearance_AppCompat_Title
:
Int
static
val
TextAppearance_AppCompat_Title_Inverse
:
Int
static
val
TextAppearance_AppCompat_Tooltip
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Menu
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Subtitle
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Title
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Subtitle
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Title
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_Button
:
Int
static
val
TextAppearance_AppCompat_Widget_Button_Borderless_Colored
:
Int
static
val
TextAppearance_AppCompat_Widget_Button_Colored
:
Int
static
val
TextAppearance_AppCompat_Widget_Button_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_DropDownItem
:
Int
static
val
TextAppearance_AppCompat_Widget_PopupMenu_Header
:
Int
static
val
TextAppearance_AppCompat_Widget_PopupMenu_Large
:
Int
static
val
TextAppearance_AppCompat_Widget_PopupMenu_Small
:
Int
static
val
TextAppearance_AppCompat_Widget_Switch
:
Int
static
val
TextAppearance_AppCompat_Widget_TextView_SpinnerItem
:
Int
static
val
TextAppearance_CityPinboard_Title
:
Int
static
val
TextAppearance_CityPinboard_Toolbar
:
Int
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Info_Media
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Line2_Media
:
Int
static
val
TextAppearance_Compat_Notification_Media
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Time_Media
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
TextAppearance_Compat_Notification_Title_Media
:
Int
static
val
TextAppearance_Design_CollapsingToolbar_Expanded
:
Int
static
val
TextAppearance_Design_Counter
:
Int
static
val
TextAppearance_Design_Counter_Overflow
:
Int
static
val
TextAppearance_Design_Error
:
Int
static
val
TextAppearance_Design_HelperText
:
Int
static
val
TextAppearance_Design_Hint
:
Int
static
val
TextAppearance_Design_Snackbar_Message
:
Int
static
val
TextAppearance_Design_Tab
:
Int
static
val
TextAppearance_MaterialComponents_Body1
:
Int
static
val
TextAppearance_MaterialComponents_Body2
:
Int
static
val
TextAppearance_MaterialComponents_Button
:
Int
static
val
TextAppearance_MaterialComponents_Caption
:
Int
static
val
TextAppearance_MaterialComponents_Chip
:
Int
static
val
TextAppearance_MaterialComponents_Headline1
:
Int
static
val
TextAppearance_MaterialComponents_Headline2
:
Int
static
val
TextAppearance_MaterialComponents_Headline3
:
Int
static
val
TextAppearance_MaterialComponents_Headline4
:
Int
static
val
TextAppearance_MaterialComponents_Headline5
:
Int
static
val
TextAppearance_MaterialComponents_Headline6
:
Int
static
val
TextAppearance_MaterialComponents_Overline
:
Int
static
val
TextAppearance_MaterialComponents_Subtitle1
:
Int
static
val
TextAppearance_MaterialComponents_Subtitle2
:
Int
static
val
TextAppearance_MaterialComponents_Tab
:
Int
static
val
TextAppearance_Widget_AppCompat_ExpandedMenu_Item
:
Int
static
val
TextAppearance_Widget_AppCompat_Toolbar_Subtitle
:
Int
static
val
TextAppearance_Widget_AppCompat_Toolbar_Title
:
Int
static
val
ThemeOverlay_AppCompat
:
Int
static
val
ThemeOverlay_AppCompat_ActionBar
:
Int
static
val
ThemeOverlay_AppCompat_Dark
:
Int
static
val
ThemeOverlay_AppCompat_Dark_ActionBar
:
Int
static
val
ThemeOverlay_AppCompat_Dialog
:
Int
static
val
ThemeOverlay_AppCompat_Dialog_Alert
:
Int
static
val
ThemeOverlay_AppCompat_Light
:
Int
static
val
ThemeOverlay_MaterialComponents
:
Int
static
val
ThemeOverlay_MaterialComponents_ActionBar
:
Int
static
val
ThemeOverlay_MaterialComponents_Dark
:
Int
static
val
ThemeOverlay_MaterialComponents_Dark_ActionBar
:
Int
static
val
ThemeOverlay_MaterialComponents_Dialog
:
Int
static
val
ThemeOverlay_MaterialComponents_Dialog_Alert
:
Int
static
val
ThemeOverlay_MaterialComponents_Light
:
Int
static
val
ThemeOverlay_MaterialComponents_TextInputEditText
:
Int
static
val
ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox
:
Int
static
val
ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense
:
Int
static
val
ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox
:
Int
static
val
ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense
:
Int
static
val
Theme_AppCompat
:
Int
static
val
Theme_AppCompat_CompactMenu
:
Int
static
val
Theme_AppCompat_DayNight
:
Int
static
val
Theme_AppCompat_DayNight_DarkActionBar
:
Int
static
val
Theme_AppCompat_DayNight_Dialog
:
Int
static
val
Theme_AppCompat_DayNight_DialogWhenLarge
:
Int
static
val
Theme_AppCompat_DayNight_Dialog_Alert
:
Int
static
val
Theme_AppCompat_DayNight_Dialog_MinWidth
:
Int
static
val
Theme_AppCompat_DayNight_NoActionBar
:
Int
static
val
Theme_AppCompat_Dialog
:
Int
static
val
Theme_AppCompat_DialogWhenLarge
:
Int
static
val
Theme_AppCompat_Dialog_Alert
:
Int
static
val
Theme_AppCompat_Dialog_MinWidth
:
Int
static
val
Theme_AppCompat_Light
:
Int
static
val
Theme_AppCompat_Light_DarkActionBar
:
Int
static
val
Theme_AppCompat_Light_Dialog
:
Int
static
val
Theme_AppCompat_Light_DialogWhenLarge
:
Int
static
val
Theme_AppCompat_Light_Dialog_Alert
:
Int
static
val
Theme_AppCompat_Light_Dialog_MinWidth
:
Int
static
val
Theme_AppCompat_Light_NoActionBar
:
Int
static
val
Theme_AppCompat_NoActionBar
:
Int
static
val
Theme_CityPinboard
:
Int
static
val
Theme_CityPinboard_NoActionBar
:
Int
static
val
Theme_Design
:
Int
static
val
Theme_Design_BottomSheetDialog
:
Int
static
val
Theme_Design_Light
:
Int
static
val
Theme_Design_Light_BottomSheetDialog
:
Int
static
val
Theme_Design_Light_NoActionBar
:
Int
static
val
Theme_Design_NoActionBar
:
Int
static
val
Theme_MaterialComponents
:
Int
static
val
Theme_MaterialComponents_BottomSheetDialog
:
Int
static
val
Theme_MaterialComponents_Bridge
:
Int
static
val
Theme_MaterialComponents_CompactMenu
:
Int
static
val
Theme_MaterialComponents_Dialog
:
Int
static
val
Theme_MaterialComponents_DialogWhenLarge
:
Int
static
val
Theme_MaterialComponents_Dialog_Alert
:
Int
static
val
Theme_MaterialComponents_Dialog_MinWidth
:
Int
static
val
Theme_MaterialComponents_Light
:
Int
static
val
Theme_MaterialComponents_Light_BottomSheetDialog
:
Int
static
val
Theme_MaterialComponents_Light_Bridge
:
Int
static
val
Theme_MaterialComponents_Light_DarkActionBar
:
Int
static
val
Theme_MaterialComponents_Light_DarkActionBar_Bridge
:
Int
static
val
Theme_MaterialComponents_Light_Dialog
:
Int
static
val
Theme_MaterialComponents_Light_DialogWhenLarge
:
Int
static
val
Theme_MaterialComponents_Light_Dialog_Alert
:
Int
static
val
Theme_MaterialComponents_Light_Dialog_MinWidth
:
Int
static
val
Theme_MaterialComponents_Light_NoActionBar
:
Int
static
val
Theme_MaterialComponents_Light_NoActionBar_Bridge
:
Int
static
val
Theme_MaterialComponents_NoActionBar
:
Int
static
val
Theme_MaterialComponents_NoActionBar_Bridge
:
Int
static
val
Theme_Widget_CityPinboard_Toolbar
:
Int
static
val
Widget_AppCompat_ActionBar
:
Int
static
val
Widget_AppCompat_ActionBar_Solid
:
Int
static
val
Widget_AppCompat_ActionBar_TabBar
:
Int
static
val
Widget_AppCompat_ActionBar_TabText
:
Int
static
val
Widget_AppCompat_ActionBar_TabView
:
Int
static
val
Widget_AppCompat_ActionButton
:
Int
static
val
Widget_AppCompat_ActionButton_CloseMode
:
Int
static
val
Widget_AppCompat_ActionButton_Overflow
:
Int
static
val
Widget_AppCompat_ActionMode
:
Int
static
val
Widget_AppCompat_ActivityChooserView
:
Int
static
val
Widget_AppCompat_AutoCompleteTextView
:
Int
static
val
Widget_AppCompat_Button
:
Int
static
val
Widget_AppCompat_ButtonBar
:
Int
static
val
Widget_AppCompat_ButtonBar_AlertDialog
:
Int
static
val
Widget_AppCompat_Button_Borderless
:
Int
static
val
Widget_AppCompat_Button_Borderless_Colored
:
Int
static
val
Widget_AppCompat_Button_ButtonBar_AlertDialog
:
Int
static
val
Widget_AppCompat_Button_Colored
:
Int
static
val
Widget_AppCompat_Button_Small
:
Int
static
val
Widget_AppCompat_CompoundButton_CheckBox
:
Int
static
val
Widget_AppCompat_CompoundButton_RadioButton
:
Int
static
val
Widget_AppCompat_CompoundButton_Switch
:
Int
static
val
Widget_AppCompat_DrawerArrowToggle
:
Int
static
val
Widget_AppCompat_DropDownItem_Spinner
:
Int
static
val
Widget_AppCompat_EditText
:
Int
static
val
Widget_AppCompat_ImageButton
:
Int
static
val
Widget_AppCompat_Light_ActionBar
:
Int
static
val
Widget_AppCompat_Light_ActionBar_Solid
:
Int
static
val
Widget_AppCompat_Light_ActionBar_Solid_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabBar
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabBar_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabText
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabText_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabView
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabView_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionButton
:
Int
static
val
Widget_AppCompat_Light_ActionButton_CloseMode
:
Int
static
val
Widget_AppCompat_Light_ActionButton_Overflow
:
Int
static
val
Widget_AppCompat_Light_ActionMode_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActivityChooserView
:
Int
static
val
Widget_AppCompat_Light_AutoCompleteTextView
:
Int
static
val
Widget_AppCompat_Light_DropDownItem_Spinner
:
Int
static
val
Widget_AppCompat_Light_ListPopupWindow
:
Int
static
val
Widget_AppCompat_Light_ListView_DropDown
:
Int
static
val
Widget_AppCompat_Light_PopupMenu
:
Int
static
val
Widget_AppCompat_Light_PopupMenu_Overflow
:
Int
static
val
Widget_AppCompat_Light_SearchView
:
Int
static
val
Widget_AppCompat_Light_Spinner_DropDown_ActionBar
:
Int
static
val
Widget_AppCompat_ListMenuView
:
Int
static
val
Widget_AppCompat_ListPopupWindow
:
Int
static
val
Widget_AppCompat_ListView
:
Int
static
val
Widget_AppCompat_ListView_DropDown
:
Int
static
val
Widget_AppCompat_ListView_Menu
:
Int
static
val
Widget_AppCompat_PopupMenu
:
Int
static
val
Widget_AppCompat_PopupMenu_Overflow
:
Int
static
val
Widget_AppCompat_PopupWindow
:
Int
static
val
Widget_AppCompat_ProgressBar
:
Int
static
val
Widget_AppCompat_ProgressBar_Horizontal
:
Int
static
val
Widget_AppCompat_RatingBar
:
Int
static
val
Widget_AppCompat_RatingBar_Indicator
:
Int
static
val
Widget_AppCompat_RatingBar_Small
:
Int
static
val
Widget_AppCompat_SearchView
:
Int
static
val
Widget_AppCompat_SearchView_ActionBar
:
Int
static
val
Widget_AppCompat_SeekBar
:
Int
static
val
Widget_AppCompat_SeekBar_Discrete
:
Int
static
val
Widget_AppCompat_Spinner
:
Int
static
val
Widget_AppCompat_Spinner_DropDown
:
Int
static
val
Widget_AppCompat_Spinner_DropDown_ActionBar
:
Int
static
val
Widget_AppCompat_Spinner_Underlined
:
Int
static
val
Widget_AppCompat_TextView_SpinnerItem
:
Int
static
val
Widget_AppCompat_Toolbar
:
Int
static
val
Widget_AppCompat_Toolbar_Button_Navigation
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
static
val
Widget_Design_AppBarLayout
:
Int
static
val
Widget_Design_BottomNavigationView
:
Int
static
val
Widget_Design_BottomSheet_Modal
:
Int
static
val
Widget_Design_CollapsingToolbar
:
Int
static
val
Widget_Design_FloatingActionButton
:
Int
static
val
Widget_Design_NavigationView
:
Int
static
val
Widget_Design_ScrimInsetsFrameLayout
:
Int
static
val
Widget_Design_Snackbar
:
Int
static
val
Widget_Design_TabLayout
:
Int
static
val
Widget_Design_TextInputLayout
:
Int
static
val
Widget_MaterialComponents_BottomAppBar
:
Int
static
val
Widget_MaterialComponents_BottomAppBar_Colored
:
Int
static
val
Widget_MaterialComponents_BottomNavigationView
:
Int
static
val
Widget_MaterialComponents_BottomNavigationView_Colored
:
Int
static
val
Widget_MaterialComponents_BottomSheet_Modal
:
Int
static
val
Widget_MaterialComponents_Button
:
Int
static
val
Widget_MaterialComponents_Button_Icon
:
Int
static
val
Widget_MaterialComponents_Button_OutlinedButton
:
Int
static
val
Widget_MaterialComponents_Button_OutlinedButton_Icon
:
Int
static
val
Widget_MaterialComponents_Button_TextButton
:
Int
static
val
Widget_MaterialComponents_Button_TextButton_Dialog
:
Int
static
val
Widget_MaterialComponents_Button_TextButton_Dialog_Icon
:
Int
static
val
Widget_MaterialComponents_Button_TextButton_Icon
:
Int
static
val
Widget_MaterialComponents_Button_UnelevatedButton
:
Int
static
val
Widget_MaterialComponents_Button_UnelevatedButton_Icon
:
Int
static
val
Widget_MaterialComponents_CardView
:
Int
static
val
Widget_MaterialComponents_ChipGroup
:
Int
static
val
Widget_MaterialComponents_Chip_Action
:
Int
static
val
Widget_MaterialComponents_Chip_Choice
:
Int
static
val
Widget_MaterialComponents_Chip_Entry
:
Int
static
val
Widget_MaterialComponents_Chip_Filter
:
Int
static
val
Widget_MaterialComponents_FloatingActionButton
:
Int
static
val
Widget_MaterialComponents_NavigationView
:
Int
static
val
Widget_MaterialComponents_Snackbar
:
Int
static
val
Widget_MaterialComponents_Snackbar_FullWidth
:
Int
static
val
Widget_MaterialComponents_TabLayout
:
Int
static
val
Widget_MaterialComponents_TabLayout_Colored
:
Int
static
val
Widget_MaterialComponents_TextInputEditText_FilledBox
:
Int
static
val
Widget_MaterialComponents_TextInputEditText_FilledBox_Dense
:
Int
static
val
Widget_MaterialComponents_TextInputEditText_OutlinedBox
:
Int
static
val
Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense
:
Int
static
val
Widget_MaterialComponents_TextInputLayout_FilledBox
:
Int
static
val
Widget_MaterialComponents_TextInputLayout_FilledBox_Dense
:
Int
static
val
Widget_MaterialComponents_TextInputLayout_OutlinedBox
:
Int
static
val
Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense
:
Int
static
val
Widget_MaterialComponents_Toolbar
:
Int
static
val
Widget_Shrine_Button_TextButton
:
Int
static
val
Widget_Support_CoordinatorLayout
:
Int
class
styleable
Module Contents
styleable
(
)
static
val
ActionBar
:
IntArray
static
val
ActionBarLayout
:
IntArray
static
val
ActionBarLayout_android_layout_gravity
:
Int
static
val
ActionBar_background
:
Int
static
val
ActionBar_backgroundSplit
:
Int
static
val
ActionBar_backgroundStacked
:
Int
static
val
ActionBar_contentInsetEnd
:
Int
static
val
ActionBar_contentInsetEndWithActions
:
Int
static
val
ActionBar_contentInsetLeft
:
Int
static
val
ActionBar_contentInsetRight
:
Int
static
val
ActionBar_contentInsetStart
:
Int
static
val
ActionBar_contentInsetStartWithNavigation
:
Int
static
val
ActionBar_customNavigationLayout
:
Int
static
val
ActionBar_displayOptions
:
Int
static
val
ActionBar_divider
:
Int
static
val
ActionBar_elevation
:
Int
static
val
ActionBar_height
:
Int
static
val
ActionBar_hideOnContentScroll
:
Int
static
val
ActionBar_homeAsUpIndicator
:
Int
static
val
ActionBar_homeLayout
:
Int
static
val
ActionBar_icon
:
Int
static
val
ActionBar_indeterminateProgressStyle
:
Int
static
val
ActionBar_itemPadding
:
Int
static
val
ActionBar_logo
:
Int
static
val
ActionBar_navigationMode
:
Int
static
val
ActionBar_popupTheme
:
Int
static
val
ActionBar_progressBarPadding
:
Int
static
val
ActionBar_progressBarStyle
:
Int
static
val
ActionBar_subtitle
:
Int
static
val
ActionBar_subtitleTextStyle
:
Int
static
val
ActionBar_title
:
Int
static
val
ActionBar_titleTextStyle
:
Int
static
val
ActionMenuItemView
:
IntArray
static
val
ActionMenuItemView_android_minWidth
:
Int
static
val
ActionMenuView
:
IntArray
static
val
ActionMode
:
IntArray
static
val
ActionMode_background
:
Int
static
val
ActionMode_backgroundSplit
:
Int
static
val
ActionMode_closeItemLayout
:
Int
static
val
ActionMode_height
:
Int
static
val
ActionMode_subtitleTextStyle
:
Int
static
val
ActionMode_titleTextStyle
:
Int
static
val
ActivityChooserView
:
IntArray
static
val
ActivityChooserView_expandActivityOverflowButtonDrawable
:
Int
static
val
ActivityChooserView_initialActivityCount
:
Int
static
val
AlertDialog
:
IntArray
static
val
AlertDialog_android_layout
:
Int
static
val
AlertDialog_buttonIconDimen
:
Int
static
val
AlertDialog_buttonPanelSideLayout
:
Int
static
val
AlertDialog_listItemLayout
:
Int
static
val
AlertDialog_listLayout
:
Int
static
val
AlertDialog_multiChoiceItemLayout
:
Int
static
val
AlertDialog_showTitle
:
Int
static
val
AlertDialog_singleChoiceItemLayout
:
Int
static
val
AnimatedStateListDrawableCompat
:
IntArray
static
val
AnimatedStateListDrawableCompat_android_constantSize
:
Int
static
val
AnimatedStateListDrawableCompat_android_dither
:
Int
static
val
AnimatedStateListDrawableCompat_android_enterFadeDuration
:
Int
static
val
AnimatedStateListDrawableCompat_android_exitFadeDuration
:
Int
static
val
AnimatedStateListDrawableCompat_android_variablePadding
:
Int
static
val
AnimatedStateListDrawableCompat_android_visible
:
Int
static
val
AnimatedStateListDrawableItem
:
IntArray
static
val
AnimatedStateListDrawableItem_android_drawable
:
Int
static
val
AnimatedStateListDrawableItem_android_id
:
Int
static
val
AnimatedStateListDrawableTransition
:
IntArray
static
val
AnimatedStateListDrawableTransition_android_drawable
:
Int
static
val
AnimatedStateListDrawableTransition_android_fromId
:
Int
static
val
AnimatedStateListDrawableTransition_android_reversible
:
Int
static
val
AnimatedStateListDrawableTransition_android_toId
:
Int
static
val
AppBarLayout
:
IntArray
static
val
AppBarLayoutStates
:
IntArray
static
val
AppBarLayoutStates_state_collapsed
:
Int
static
val
AppBarLayoutStates_state_collapsible
:
Int
static
val
AppBarLayoutStates_state_liftable
:
Int
static
val
AppBarLayoutStates_state_lifted
:
Int
static
val
AppBarLayout_Layout
:
IntArray
static
val
AppBarLayout_Layout_layout_scrollFlags
:
Int
static
val
AppBarLayout_Layout_layout_scrollInterpolator
:
Int
static
val
AppBarLayout_android_background
:
Int
static
val
AppBarLayout_android_keyboardNavigationCluster
:
Int
static
val
AppBarLayout_android_touchscreenBlocksFocus
:
Int
static
val
AppBarLayout_elevation
:
Int
static
val
AppBarLayout_expanded
:
Int
static
val
AppBarLayout_liftOnScroll
:
Int
static
val
AppCompatImageView
:
IntArray
static
val
AppCompatImageView_android_src
:
Int
static
val
AppCompatImageView_srcCompat
:
Int
static
val
AppCompatImageView_tint
:
Int
static
val
AppCompatImageView_tintMode
:
Int
static
val
AppCompatSeekBar
:
IntArray
static
val
AppCompatSeekBar_android_thumb
:
Int
static
val
AppCompatSeekBar_tickMark
:
Int
static
val
AppCompatSeekBar_tickMarkTint
:
Int
static
val
AppCompatSeekBar_tickMarkTintMode
:
Int
static
val
AppCompatTextHelper
:
IntArray
static
val
AppCompatTextHelper_android_drawableBottom
:
Int
static
val
AppCompatTextHelper_android_drawableEnd
:
Int
static
val
AppCompatTextHelper_android_drawableLeft
:
Int
static
val
AppCompatTextHelper_android_drawableRight
:
Int
static
val
AppCompatTextHelper_android_drawableStart
:
Int
static
val
AppCompatTextHelper_android_drawableTop
:
Int
static
val
AppCompatTextHelper_android_textAppearance
:
Int
static
val
AppCompatTextView
:
IntArray
static
val
AppCompatTextView_android_textAppearance
:
Int
static
val
AppCompatTextView_autoSizeMaxTextSize
:
Int
static
val
AppCompatTextView_autoSizeMinTextSize
:
Int
static
val
AppCompatTextView_autoSizePresetSizes
:
Int
static
val
AppCompatTextView_autoSizeStepGranularity
:
Int
static
val
AppCompatTextView_autoSizeTextType
:
Int
static
val
AppCompatTextView_firstBaselineToTopHeight
:
Int
static
val
AppCompatTextView_fontFamily
:
Int
static
val
AppCompatTextView_lastBaselineToBottomHeight
:
Int
static
val
AppCompatTextView_lineHeight
:
Int
static
val
AppCompatTextView_textAllCaps
:
Int
static
val
AppCompatTheme
:
IntArray
static
val
AppCompatTheme_actionBarDivider
:
Int
static
val
AppCompatTheme_actionBarItemBackground
:
Int
static
val
AppCompatTheme_actionBarPopupTheme
:
Int
static
val
AppCompatTheme_actionBarSize
:
Int
static
val
AppCompatTheme_actionBarSplitStyle
:
Int
static
val
AppCompatTheme_actionBarStyle
:
Int
static
val
AppCompatTheme_actionBarTabBarStyle
:
Int
static
val
AppCompatTheme_actionBarTabStyle
:
Int
static
val
AppCompatTheme_actionBarTabTextStyle
:
Int
static
val
AppCompatTheme_actionBarTheme
:
Int
static
val
AppCompatTheme_actionBarWidgetTheme
:
Int
static
val
AppCompatTheme_actionButtonStyle
:
Int
static
val
AppCompatTheme_actionDropDownStyle
:
Int
static
val
AppCompatTheme_actionMenuTextAppearance
:
Int
static
val
AppCompatTheme_actionMenuTextColor
:
Int
static
val
AppCompatTheme_actionModeBackground
:
Int
static
val
AppCompatTheme_actionModeCloseButtonStyle
:
Int
static
val
AppCompatTheme_actionModeCloseDrawable
:
Int
static
val
AppCompatTheme_actionModeCopyDrawable
:
Int
static
val
AppCompatTheme_actionModeCutDrawable
:
Int
static
val
AppCompatTheme_actionModeFindDrawable
:
Int
static
val
AppCompatTheme_actionModePasteDrawable
:
Int
static
val
AppCompatTheme_actionModePopupWindowStyle
:
Int
static
val
AppCompatTheme_actionModeSelectAllDrawable
:
Int
static
val
AppCompatTheme_actionModeShareDrawable
:
Int
static
val
AppCompatTheme_actionModeSplitBackground
:
Int
static
val
AppCompatTheme_actionModeStyle
:
Int
static
val
AppCompatTheme_actionModeWebSearchDrawable
:
Int
static
val
AppCompatTheme_actionOverflowButtonStyle
:
Int
static
val
AppCompatTheme_actionOverflowMenuStyle
:
Int
static
val
AppCompatTheme_activityChooserViewStyle
:
Int
static
val
AppCompatTheme_alertDialogButtonGroupStyle
:
Int
static
val
AppCompatTheme_alertDialogCenterButtons
:
Int
static
val
AppCompatTheme_alertDialogStyle
:
Int
static
val
AppCompatTheme_alertDialogTheme
:
Int
static
val
AppCompatTheme_android_windowAnimationStyle
:
Int
static
val
AppCompatTheme_android_windowIsFloating
:
Int
static
val
AppCompatTheme_autoCompleteTextViewStyle
:
Int
static
val
AppCompatTheme_borderlessButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarNegativeButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarNeutralButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarPositiveButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarStyle
:
Int
static
val
AppCompatTheme_buttonStyle
:
Int
static
val
AppCompatTheme_buttonStyleSmall
:
Int
static
val
AppCompatTheme_checkboxStyle
:
Int
static
val
AppCompatTheme_checkedTextViewStyle
:
Int
static
val
AppCompatTheme_colorAccent
:
Int
static
val
AppCompatTheme_colorBackgroundFloating
:
Int
static
val
AppCompatTheme_colorButtonNormal
:
Int
static
val
AppCompatTheme_colorControlActivated
:
Int
static
val
AppCompatTheme_colorControlHighlight
:
Int
static
val
AppCompatTheme_colorControlNormal
:
Int
static
val
AppCompatTheme_colorError
:
Int
static
val
AppCompatTheme_colorPrimary
:
Int
static
val
AppCompatTheme_colorPrimaryDark
:
Int
static
val
AppCompatTheme_colorSwitchThumbNormal
:
Int
static
val
AppCompatTheme_controlBackground
:
Int
static
val
AppCompatTheme_dialogCornerRadius
:
Int
static
val
AppCompatTheme_dialogPreferredPadding
:
Int
static
val
AppCompatTheme_dialogTheme
:
Int
static
val
AppCompatTheme_dividerHorizontal
:
Int
static
val
AppCompatTheme_dividerVertical
:
Int
static
val
AppCompatTheme_dropDownListViewStyle
:
Int
static
val
AppCompatTheme_dropdownListPreferredItemHeight
:
Int
static
val
AppCompatTheme_editTextBackground
:
Int
static
val
AppCompatTheme_editTextColor
:
Int
static
val
AppCompatTheme_editTextStyle
:
Int
static
val
AppCompatTheme_homeAsUpIndicator
:
Int
static
val
AppCompatTheme_imageButtonStyle
:
Int
static
val
AppCompatTheme_listChoiceBackgroundIndicator
:
Int
static
val
AppCompatTheme_listDividerAlertDialog
:
Int
static
val
AppCompatTheme_listMenuViewStyle
:
Int
static
val
AppCompatTheme_listPopupWindowStyle
:
Int
static
val
AppCompatTheme_listPreferredItemHeight
:
Int
static
val
AppCompatTheme_listPreferredItemHeightLarge
:
Int
static
val
AppCompatTheme_listPreferredItemHeightSmall
:
Int
static
val
AppCompatTheme_listPreferredItemPaddingLeft
:
Int
static
val
AppCompatTheme_listPreferredItemPaddingRight
:
Int
static
val
AppCompatTheme_panelBackground
:
Int
static
val
AppCompatTheme_panelMenuListTheme
:
Int
static
val
AppCompatTheme_panelMenuListWidth
:
Int
static
val
AppCompatTheme_popupMenuStyle
:
Int
static
val
AppCompatTheme_popupWindowStyle
:
Int
static
val
AppCompatTheme_radioButtonStyle
:
Int
static
val
AppCompatTheme_ratingBarStyle
:
Int
static
val
AppCompatTheme_ratingBarStyleIndicator
:
Int
static
val
AppCompatTheme_ratingBarStyleSmall
:
Int
static
val
AppCompatTheme_searchViewStyle
:
Int
static
val
AppCompatTheme_seekBarStyle
:
Int
static
val
AppCompatTheme_selectableItemBackground
:
Int
static
val
AppCompatTheme_selectableItemBackgroundBorderless
:
Int
static
val
AppCompatTheme_spinnerDropDownItemStyle
:
Int
static
val
AppCompatTheme_spinnerStyle
:
Int
static
val
AppCompatTheme_switchStyle
:
Int
static
val
AppCompatTheme_textAppearanceLargePopupMenu
:
Int
static
val
AppCompatTheme_textAppearanceListItem
:
Int
static
val
AppCompatTheme_textAppearanceListItemSecondary
:
Int
static
val
AppCompatTheme_textAppearanceListItemSmall
:
Int
static
val
AppCompatTheme_textAppearancePopupMenuHeader
:
Int
static
val
AppCompatTheme_textAppearanceSearchResultSubtitle
:
Int
static
val
AppCompatTheme_textAppearanceSearchResultTitle
:
Int
static
val
AppCompatTheme_textAppearanceSmallPopupMenu
:
Int
static
val
AppCompatTheme_textColorAlertDialogListItem
:
Int
static
val
AppCompatTheme_textColorSearchUrl
:
Int
static
val
AppCompatTheme_toolbarNavigationButtonStyle
:
Int
static
val
AppCompatTheme_toolbarStyle
:
Int
static
val
AppCompatTheme_tooltipForegroundColor
:
Int
static
val
AppCompatTheme_tooltipFrameBackground
:
Int
static
val
AppCompatTheme_viewInflaterClass
:
Int
static
val
AppCompatTheme_windowActionBar
:
Int
static
val
AppCompatTheme_windowActionBarOverlay
:
Int
static
val
AppCompatTheme_windowActionModeOverlay
:
Int
static
val
AppCompatTheme_windowFixedHeightMajor
:
Int
static
val
AppCompatTheme_windowFixedHeightMinor
:
Int
static
val
AppCompatTheme_windowFixedWidthMajor
:
Int
static
val
AppCompatTheme_windowFixedWidthMinor
:
Int
static
val
AppCompatTheme_windowMinWidthMajor
:
Int
static
val
AppCompatTheme_windowMinWidthMinor
:
Int
static
val
AppCompatTheme_windowNoTitle
:
Int
static
val
BottomAppBar
:
IntArray
static
val
BottomAppBar_backgroundTint
:
Int
static
val
BottomAppBar_fabAlignmentMode
:
Int
static
val
BottomAppBar_fabCradleMargin
:
Int
static
val
BottomAppBar_fabCradleRoundedCornerRadius
:
Int
static
val
BottomAppBar_fabCradleVerticalOffset
:
Int
static
val
BottomAppBar_hideOnScroll
:
Int
static
val
BottomNavigationView
:
IntArray
static
val
BottomNavigationView_elevation
:
Int
static
val
BottomNavigationView_itemBackground
:
Int
static
val
BottomNavigationView_itemHorizontalTranslationEnabled
:
Int
static
val
BottomNavigationView_itemIconSize
:
Int
static
val
BottomNavigationView_itemIconTint
:
Int
static
val
BottomNavigationView_itemTextAppearanceActive
:
Int
static
val
BottomNavigationView_itemTextAppearanceInactive
:
Int
static
val
BottomNavigationView_itemTextColor
:
Int
static
val
BottomNavigationView_labelVisibilityMode
:
Int
static
val
BottomNavigationView_menu
:
Int
static
val
BottomSheetBehavior_Layout
:
IntArray
static
val
BottomSheetBehavior_Layout_behavior_fitToContents
:
Int
static
val
BottomSheetBehavior_Layout_behavior_hideable
:
Int
static
val
BottomSheetBehavior_Layout_behavior_peekHeight
:
Int
static
val
BottomSheetBehavior_Layout_behavior_skipCollapsed
:
Int
static
val
ButtonBarLayout
:
IntArray
static
val
ButtonBarLayout_allowStacking
:
Int
static
val
CardView
:
IntArray
static
val
CardView_android_minHeight
:
Int
static
val
CardView_android_minWidth
:
Int
static
val
CardView_cardBackgroundColor
:
Int
static
val
CardView_cardCornerRadius
:
Int
static
val
CardView_cardElevation
:
Int
static
val
CardView_cardMaxElevation
:
Int
static
val
CardView_cardPreventCornerOverlap
:
Int
static
val
CardView_cardUseCompatPadding
:
Int
static
val
CardView_contentPadding
:
Int
static
val
CardView_contentPaddingBottom
:
Int
static
val
CardView_contentPaddingLeft
:
Int
static
val
CardView_contentPaddingRight
:
Int
static
val
CardView_contentPaddingTop
:
Int
static
val
Chip
:
IntArray
static
val
ChipGroup
:
IntArray
static
val
ChipGroup_checkedChip
:
Int
static
val
ChipGroup_chipSpacing
:
Int
static
val
ChipGroup_chipSpacingHorizontal
:
Int
static
val
ChipGroup_chipSpacingVertical
:
Int
static
val
ChipGroup_singleLine
:
Int
static
val
ChipGroup_singleSelection
:
Int
static
val
Chip_android_checkable
:
Int
static
val
Chip_android_ellipsize
:
Int
static
val
Chip_android_maxWidth
:
Int
static
val
Chip_android_text
:
Int
static
val
Chip_android_textAppearance
:
Int
static
val
Chip_checkedIcon
:
Int
static
val
Chip_checkedIconEnabled
:
Int
static
val
Chip_checkedIconVisible
:
Int
static
val
Chip_chipBackgroundColor
:
Int
static
val
Chip_chipCornerRadius
:
Int
static
val
Chip_chipEndPadding
:
Int
static
val
Chip_chipIcon
:
Int
static
val
Chip_chipIconEnabled
:
Int
static
val
Chip_chipIconSize
:
Int
static
val
Chip_chipIconTint
:
Int
static
val
Chip_chipIconVisible
:
Int
static
val
Chip_chipMinHeight
:
Int
static
val
Chip_chipStartPadding
:
Int
static
val
Chip_chipStrokeColor
:
Int
static
val
Chip_chipStrokeWidth
:
Int
static
val
Chip_closeIcon
:
Int
static
val
Chip_closeIconEnabled
:
Int
static
val
Chip_closeIconEndPadding
:
Int
static
val
Chip_closeIconSize
:
Int
static
val
Chip_closeIconStartPadding
:
Int
static
val
Chip_closeIconTint
:
Int
static
val
Chip_closeIconVisible
:
Int
static
val
Chip_hideMotionSpec
:
Int
static
val
Chip_iconEndPadding
:
Int
static
val
Chip_iconStartPadding
:
Int
static
val
Chip_rippleColor
:
Int
static
val
Chip_showMotionSpec
:
Int
static
val
Chip_textEndPadding
:
Int
static
val
Chip_textStartPadding
:
Int
static
val
CollapsingToolbarLayout
:
IntArray
static
val
CollapsingToolbarLayout_Layout
:
IntArray
static
val
CollapsingToolbarLayout_Layout_layout_collapseMode
:
Int
static
val
CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier
:
Int
static
val
CollapsingToolbarLayout_collapsedTitleGravity
:
Int
static
val
CollapsingToolbarLayout_collapsedTitleTextAppearance
:
Int
static
val
CollapsingToolbarLayout_contentScrim
:
Int
static
val
CollapsingToolbarLayout_expandedTitleGravity
:
Int
static
val
CollapsingToolbarLayout_expandedTitleMargin
:
Int
static
val
CollapsingToolbarLayout_expandedTitleMarginBottom
:
Int
static
val
CollapsingToolbarLayout_expandedTitleMarginEnd
:
Int
static
val
CollapsingToolbarLayout_expandedTitleMarginStart
:
Int
static
val
CollapsingToolbarLayout_expandedTitleMarginTop
:
Int
static
val
CollapsingToolbarLayout_expandedTitleTextAppearance
:
Int
static
val
CollapsingToolbarLayout_scrimAnimationDuration
:
Int
static
val
CollapsingToolbarLayout_scrimVisibleHeightTrigger
:
Int
static
val
CollapsingToolbarLayout_statusBarScrim
:
Int
static
val
CollapsingToolbarLayout_title
:
Int
static
val
CollapsingToolbarLayout_titleEnabled
:
Int
static
val
CollapsingToolbarLayout_toolbarId
:
Int
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
CompoundButton
:
IntArray
static
val
CompoundButton_android_button
:
Int
static
val
CompoundButton_buttonTint
:
Int
static
val
CompoundButton_buttonTintMode
:
Int
static
val
ConstraintLayout_Layout
:
IntArray
static
val
ConstraintLayout_Layout_android_maxHeight
:
Int
static
val
ConstraintLayout_Layout_android_maxWidth
:
Int
static
val
ConstraintLayout_Layout_android_minHeight
:
Int
static
val
ConstraintLayout_Layout_android_minWidth
:
Int
static
val
ConstraintLayout_Layout_android_orientation
:
Int
static
val
ConstraintLayout_Layout_barrierAllowsGoneWidgets
:
Int
static
val
ConstraintLayout_Layout_barrierDirection
:
Int
static
val
ConstraintLayout_Layout_chainUseRtl
:
Int
static
val
ConstraintLayout_Layout_constraintSet
:
Int
static
val
ConstraintLayout_Layout_constraint_referenced_ids
:
Int
static
val
ConstraintLayout_Layout_layout_constrainedHeight
:
Int
static
val
ConstraintLayout_Layout_layout_constrainedWidth
:
Int
static
val
ConstraintLayout_Layout_layout_constraintBaseline_creator
:
Int
static
val
ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintBottom_creator
:
Int
static
val
ConstraintLayout_Layout_layout_constraintBottom_toBottomOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintBottom_toTopOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintCircle
:
Int
static
val
ConstraintLayout_Layout_layout_constraintCircleAngle
:
Int
static
val
ConstraintLayout_Layout_layout_constraintCircleRadius
:
Int
static
val
ConstraintLayout_Layout_layout_constraintDimensionRatio
:
Int
static
val
ConstraintLayout_Layout_layout_constraintEnd_toEndOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintEnd_toStartOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintGuide_begin
:
Int
static
val
ConstraintLayout_Layout_layout_constraintGuide_end
:
Int
static
val
ConstraintLayout_Layout_layout_constraintGuide_percent
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHeight_default
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHeight_max
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHeight_min
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHeight_percent
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHorizontal_bias
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHorizontal_weight
:
Int
static
val
ConstraintLayout_Layout_layout_constraintLeft_creator
:
Int
static
val
ConstraintLayout_Layout_layout_constraintLeft_toLeftOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintLeft_toRightOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintRight_creator
:
Int
static
val
ConstraintLayout_Layout_layout_constraintRight_toLeftOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintRight_toRightOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintStart_toEndOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintStart_toStartOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintTop_creator
:
Int
static
val
ConstraintLayout_Layout_layout_constraintTop_toBottomOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintTop_toTopOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintVertical_bias
:
Int
static
val
ConstraintLayout_Layout_layout_constraintVertical_chainStyle
:
Int
static
val
ConstraintLayout_Layout_layout_constraintVertical_weight
:
Int
static
val
ConstraintLayout_Layout_layout_constraintWidth_default
:
Int
static
val
ConstraintLayout_Layout_layout_constraintWidth_max
:
Int
static
val
ConstraintLayout_Layout_layout_constraintWidth_min
:
Int
static
val
ConstraintLayout_Layout_layout_constraintWidth_percent
:
Int
static
val
ConstraintLayout_Layout_layout_editor_absoluteX
:
Int
static
val
ConstraintLayout_Layout_layout_editor_absoluteY
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginBottom
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginEnd
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginLeft
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginRight
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginStart
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginTop
:
Int
static
val
ConstraintLayout_Layout_layout_optimizationLevel
:
Int
static
val
ConstraintLayout_placeholder
:
IntArray
static
val
ConstraintLayout_placeholder_content
:
Int
static
val
ConstraintLayout_placeholder_emptyVisibility
:
Int
static
val
ConstraintSet
:
IntArray
static
val
ConstraintSet_android_alpha
:
Int
static
val
ConstraintSet_android_elevation
:
Int
static
val
ConstraintSet_android_id
:
Int
static
val
ConstraintSet_android_layout_height
:
Int
static
val
ConstraintSet_android_layout_marginBottom
:
Int
static
val
ConstraintSet_android_layout_marginEnd
:
Int
static
val
ConstraintSet_android_layout_marginLeft
:
Int
static
val
ConstraintSet_android_layout_marginRight
:
Int
static
val
ConstraintSet_android_layout_marginStart
:
Int
static
val
ConstraintSet_android_layout_marginTop
:
Int
static
val
ConstraintSet_android_layout_width
:
Int
static
val
ConstraintSet_android_maxHeight
:
Int
static
val
ConstraintSet_android_maxWidth
:
Int
static
val
ConstraintSet_android_minHeight
:
Int
static
val
ConstraintSet_android_minWidth
:
Int
static
val
ConstraintSet_android_orientation
:
Int
static
val
ConstraintSet_android_rotation
:
Int
static
val
ConstraintSet_android_rotationX
:
Int
static
val
ConstraintSet_android_rotationY
:
Int
static
val
ConstraintSet_android_scaleX
:
Int
static
val
ConstraintSet_android_scaleY
:
Int
static
val
ConstraintSet_android_transformPivotX
:
Int
static
val
ConstraintSet_android_transformPivotY
:
Int
static
val
ConstraintSet_android_translationX
:
Int
static
val
ConstraintSet_android_translationY
:
Int
static
val
ConstraintSet_android_translationZ
:
Int
static
val
ConstraintSet_android_visibility
:
Int
static
val
ConstraintSet_barrierAllowsGoneWidgets
:
Int
static
val
ConstraintSet_barrierDirection
:
Int
static
val
ConstraintSet_chainUseRtl
:
Int
static
val
ConstraintSet_constraint_referenced_ids
:
Int
static
val
ConstraintSet_layout_constrainedHeight
:
Int
static
val
ConstraintSet_layout_constrainedWidth
:
Int
static
val
ConstraintSet_layout_constraintBaseline_creator
:
Int
static
val
ConstraintSet_layout_constraintBaseline_toBaselineOf
:
Int
static
val
ConstraintSet_layout_constraintBottom_creator
:
Int
static
val
ConstraintSet_layout_constraintBottom_toBottomOf
:
Int
static
val
ConstraintSet_layout_constraintBottom_toTopOf
:
Int
static
val
ConstraintSet_layout_constraintCircle
:
Int
static
val
ConstraintSet_layout_constraintCircleAngle
:
Int
static
val
ConstraintSet_layout_constraintCircleRadius
:
Int
static
val
ConstraintSet_layout_constraintDimensionRatio
:
Int
static
val
ConstraintSet_layout_constraintEnd_toEndOf
:
Int
static
val
ConstraintSet_layout_constraintEnd_toStartOf
:
Int
static
val
ConstraintSet_layout_constraintGuide_begin
:
Int
static
val
ConstraintSet_layout_constraintGuide_end
:
Int
static
val
ConstraintSet_layout_constraintGuide_percent
:
Int
static
val
ConstraintSet_layout_constraintHeight_default
:
Int
static
val
ConstraintSet_layout_constraintHeight_max
:
Int
static
val
ConstraintSet_layout_constraintHeight_min
:
Int
static
val
ConstraintSet_layout_constraintHeight_percent
:
Int
static
val
ConstraintSet_layout_constraintHorizontal_bias
:
Int
static
val
ConstraintSet_layout_constraintHorizontal_chainStyle
:
Int
static
val
ConstraintSet_layout_constraintHorizontal_weight
:
Int
static
val
ConstraintSet_layout_constraintLeft_creator
:
Int
static
val
ConstraintSet_layout_constraintLeft_toLeftOf
:
Int
static
val
ConstraintSet_layout_constraintLeft_toRightOf
:
Int
static
val
ConstraintSet_layout_constraintRight_creator
:
Int
static
val
ConstraintSet_layout_constraintRight_toLeftOf
:
Int
static
val
ConstraintSet_layout_constraintRight_toRightOf
:
Int
static
val
ConstraintSet_layout_constraintStart_toEndOf
:
Int
static
val
ConstraintSet_layout_constraintStart_toStartOf
:
Int
static
val
ConstraintSet_layout_constraintTop_creator
:
Int
static
val
ConstraintSet_layout_constraintTop_toBottomOf
:
Int
static
val
ConstraintSet_layout_constraintTop_toTopOf
:
Int
static
val
ConstraintSet_layout_constraintVertical_bias
:
Int
static
val
ConstraintSet_layout_constraintVertical_chainStyle
:
Int
static
val
ConstraintSet_layout_constraintVertical_weight
:
Int
static
val
ConstraintSet_layout_constraintWidth_default
:
Int
static
val
ConstraintSet_layout_constraintWidth_max
:
Int
static
val
ConstraintSet_layout_constraintWidth_min
:
Int
static
val
ConstraintSet_layout_constraintWidth_percent
:
Int
static
val
ConstraintSet_layout_editor_absoluteX
:
Int
static
val
ConstraintSet_layout_editor_absoluteY
:
Int
static
val
ConstraintSet_layout_goneMarginBottom
:
Int
static
val
ConstraintSet_layout_goneMarginEnd
:
Int
static
val
ConstraintSet_layout_goneMarginLeft
:
Int
static
val
ConstraintSet_layout_goneMarginRight
:
Int
static
val
ConstraintSet_layout_goneMarginStart
:
Int
static
val
ConstraintSet_layout_goneMarginTop
:
Int
static
val
CoordinatorLayout
:
IntArray
static
val
CoordinatorLayout_Layout
:
IntArray
static
val
CoordinatorLayout_Layout_android_layout_gravity
:
Int
static
val
CoordinatorLayout_Layout_layout_anchor
:
Int
static
val
CoordinatorLayout_Layout_layout_anchorGravity
:
Int
static
val
CoordinatorLayout_Layout_layout_behavior
:
Int
static
val
CoordinatorLayout_Layout_layout_dodgeInsetEdges
:
Int
static
val
CoordinatorLayout_Layout_layout_insetEdge
:
Int
static
val
CoordinatorLayout_Layout_layout_keyline
:
Int
static
val
CoordinatorLayout_keylines
:
Int
static
val
CoordinatorLayout_statusBarBackground
:
Int
static
val
DesignTheme
:
IntArray
static
val
DesignTheme_bottomSheetDialogTheme
:
Int
static
val
DesignTheme_bottomSheetStyle
:
Int
static
val
DrawerArrowToggle
:
IntArray
static
val
DrawerArrowToggle_arrowHeadLength
:
Int
static
val
DrawerArrowToggle_arrowShaftLength
:
Int
static
val
DrawerArrowToggle_barLength
:
Int
static
val
DrawerArrowToggle_color
:
Int
static
val
DrawerArrowToggle_drawableSize
:
Int
static
val
DrawerArrowToggle_gapBetweenBars
:
Int
static
val
DrawerArrowToggle_spinBars
:
Int
static
val
DrawerArrowToggle_thickness
:
Int
static
val
FloatingActionButton
:
IntArray
static
val
FloatingActionButton_Behavior_Layout
:
IntArray
static
val
FloatingActionButton_Behavior_Layout_behavior_autoHide
:
Int
static
val
FloatingActionButton_backgroundTint
:
Int
static
val
FloatingActionButton_backgroundTintMode
:
Int
static
val
FloatingActionButton_borderWidth
:
Int
static
val
FloatingActionButton_elevation
:
Int
static
val
FloatingActionButton_fabCustomSize
:
Int
static
val
FloatingActionButton_fabSize
:
Int
static
val
FloatingActionButton_hideMotionSpec
:
Int
static
val
FloatingActionButton_hoveredFocusedTranslationZ
:
Int
static
val
FloatingActionButton_maxImageSize
:
Int
static
val
FloatingActionButton_pressedTranslationZ
:
Int
static
val
FloatingActionButton_rippleColor
:
Int
static
val
FloatingActionButton_showMotionSpec
:
Int
static
val
FloatingActionButton_useCompatPadding
:
Int
static
val
FlowLayout
:
IntArray
static
val
FlowLayout_itemSpacing
:
Int
static
val
FlowLayout_lineSpacing
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
ForegroundLinearLayout
:
IntArray
static
val
ForegroundLinearLayout_android_foreground
:
Int
static
val
ForegroundLinearLayout_android_foregroundGravity
:
Int
static
val
ForegroundLinearLayout_foregroundInsidePadding
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
static
val
LinearConstraintLayout
:
IntArray
static
val
LinearConstraintLayout_android_orientation
:
Int
static
val
LinearLayoutCompat
:
IntArray
static
val
LinearLayoutCompat_Layout
:
IntArray
static
val
LinearLayoutCompat_Layout_android_layout_gravity
:
Int
static
val
LinearLayoutCompat_Layout_android_layout_height
:
Int
static
val
LinearLayoutCompat_Layout_android_layout_weight
:
Int
static
val
LinearLayoutCompat_Layout_android_layout_width
:
Int
static
val
LinearLayoutCompat_android_baselineAligned
:
Int
static
val
LinearLayoutCompat_android_baselineAlignedChildIndex
:
Int
static
val
LinearLayoutCompat_android_gravity
:
Int
static
val
LinearLayoutCompat_android_orientation
:
Int
static
val
LinearLayoutCompat_android_weightSum
:
Int
static
val
LinearLayoutCompat_divider
:
Int
static
val
LinearLayoutCompat_dividerPadding
:
Int
static
val
LinearLayoutCompat_measureWithLargestChild
:
Int
static
val
LinearLayoutCompat_showDividers
:
Int
static
val
ListPopupWindow
:
IntArray
static
val
ListPopupWindow_android_dropDownHorizontalOffset
:
Int
static
val
ListPopupWindow_android_dropDownVerticalOffset
:
Int
static
val
MaterialButton
:
IntArray
static
val
MaterialButton_android_insetBottom
:
Int
static
val
MaterialButton_android_insetLeft
:
Int
static
val
MaterialButton_android_insetRight
:
Int
static
val
MaterialButton_android_insetTop
:
Int
static
val
MaterialButton_backgroundTint
:
Int
static
val
MaterialButton_backgroundTintMode
:
Int
static
val
MaterialButton_cornerRadius
:
Int
static
val
MaterialButton_icon
:
Int
static
val
MaterialButton_iconGravity
:
Int
static
val
MaterialButton_iconPadding
:
Int
static
val
MaterialButton_iconSize
:
Int
static
val
MaterialButton_iconTint
:
Int
static
val
MaterialButton_iconTintMode
:
Int
static
val
MaterialButton_rippleColor
:
Int
static
val
MaterialButton_strokeColor
:
Int
static
val
MaterialButton_strokeWidth
:
Int
static
val
MaterialCardView
:
IntArray
static
val
MaterialCardView_strokeColor
:
Int
static
val
MaterialCardView_strokeWidth
:
Int
static
val
MaterialComponentsTheme
:
IntArray
static
val
MaterialComponentsTheme_bottomSheetDialogTheme
:
Int
static
val
MaterialComponentsTheme_bottomSheetStyle
:
Int
static
val
MaterialComponentsTheme_chipGroupStyle
:
Int
static
val
MaterialComponentsTheme_chipStandaloneStyle
:
Int
static
val
MaterialComponentsTheme_chipStyle
:
Int
static
val
MaterialComponentsTheme_colorAccent
:
Int
static
val
MaterialComponentsTheme_colorBackgroundFloating
:
Int
static
val
MaterialComponentsTheme_colorPrimary
:
Int
static
val
MaterialComponentsTheme_colorPrimaryDark
:
Int
static
val
MaterialComponentsTheme_colorSecondary
:
Int
static
val
MaterialComponentsTheme_editTextStyle
:
Int
static
val
MaterialComponentsTheme_floatingActionButtonStyle
:
Int
static
val
MaterialComponentsTheme_materialButtonStyle
:
Int
static
val
MaterialComponentsTheme_materialCardViewStyle
:
Int
static
val
MaterialComponentsTheme_navigationViewStyle
:
Int
static
val
MaterialComponentsTheme_scrimBackground
:
Int
static
val
MaterialComponentsTheme_snackbarButtonStyle
:
Int
static
val
MaterialComponentsTheme_tabStyle
:
Int
static
val
MaterialComponentsTheme_textAppearanceBody1
:
Int
static
val
MaterialComponentsTheme_textAppearanceBody2
:
Int
static
val
MaterialComponentsTheme_textAppearanceButton
:
Int
static
val
MaterialComponentsTheme_textAppearanceCaption
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline1
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline2
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline3
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline4
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline5
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline6
:
Int
static
val
MaterialComponentsTheme_textAppearanceOverline
:
Int
static
val
MaterialComponentsTheme_textAppearanceSubtitle1
:
Int
static
val
MaterialComponentsTheme_textAppearanceSubtitle2
:
Int
static
val
MaterialComponentsTheme_textInputStyle
:
Int
static
val
MenuGroup
:
IntArray
static
val
MenuGroup_android_checkableBehavior
:
Int
static
val
MenuGroup_android_enabled
:
Int
static
val
MenuGroup_android_id
:
Int
static
val
MenuGroup_android_menuCategory
:
Int
static
val
MenuGroup_android_orderInCategory
:
Int
static
val
MenuGroup_android_visible
:
Int
static
val
MenuItem
:
IntArray
static
val
MenuItem_actionLayout
:
Int
static
val
MenuItem_actionProviderClass
:
Int
static
val
MenuItem_actionViewClass
:
Int
static
val
MenuItem_alphabeticModifiers
:
Int
static
val
MenuItem_android_alphabeticShortcut
:
Int
static
val
MenuItem_android_checkable
:
Int
static
val
MenuItem_android_checked
:
Int
static
val
MenuItem_android_enabled
:
Int
static
val
MenuItem_android_icon
:
Int
static
val
MenuItem_android_id
:
Int
static
val
MenuItem_android_menuCategory
:
Int
static
val
MenuItem_android_numericShortcut
:
Int
static
val
MenuItem_android_onClick
:
Int
static
val
MenuItem_android_orderInCategory
:
Int
static
val
MenuItem_android_title
:
Int
static
val
MenuItem_android_titleCondensed
:
Int
static
val
MenuItem_android_visible
:
Int
static
val
MenuItem_contentDescription
:
Int
static
val
MenuItem_iconTint
:
Int
static
val
MenuItem_iconTintMode
:
Int
static
val
MenuItem_numericModifiers
:
Int
static
val
MenuItem_showAsAction
:
Int
static
val
MenuItem_tooltipText
:
Int
static
val
MenuView
:
IntArray
static
val
MenuView_android_headerBackground
:
Int
static
val
MenuView_android_horizontalDivider
:
Int
static
val
MenuView_android_itemBackground
:
Int
static
val
MenuView_android_itemIconDisabledAlpha
:
Int
static
val
MenuView_android_itemTextAppearance
:
Int
static
val
MenuView_android_verticalDivider
:
Int
static
val
MenuView_android_windowAnimationStyle
:
Int
static
val
MenuView_preserveIconSpacing
:
Int
static
val
MenuView_subMenuArrow
:
Int
static
val
NavigationView
:
IntArray
static
val
NavigationView_android_background
:
Int
static
val
NavigationView_android_fitsSystemWindows
:
Int
static
val
NavigationView_android_maxWidth
:
Int
static
val
NavigationView_elevation
:
Int
static
val
NavigationView_headerLayout
:
Int
static
val
NavigationView_itemBackground
:
Int
static
val
NavigationView_itemHorizontalPadding
:
Int
static
val
NavigationView_itemIconPadding
:
Int
static
val
NavigationView_itemIconTint
:
Int
static
val
NavigationView_itemTextAppearance
:
Int
static
val
NavigationView_itemTextColor
:
Int
static
val
NavigationView_menu
:
Int
static
val
PopupWindow
:
IntArray
static
val
PopupWindowBackgroundState
:
IntArray
static
val
PopupWindowBackgroundState_state_above_anchor
:
Int
static
val
PopupWindow_android_popupAnimationStyle
:
Int
static
val
PopupWindow_android_popupBackground
:
Int
static
val
PopupWindow_overlapAnchor
:
Int
static
val
RecycleListView
:
IntArray
static
val
RecycleListView_paddingBottomNoButtons
:
Int
static
val
RecycleListView_paddingTopNoTitle
:
Int
static
val
RecyclerView
:
IntArray
static
val
RecyclerView_android_descendantFocusability
:
Int
static
val
RecyclerView_android_orientation
:
Int
static
val
RecyclerView_fastScrollEnabled
:
Int
static
val
RecyclerView_fastScrollHorizontalThumbDrawable
:
Int
static
val
RecyclerView_fastScrollHorizontalTrackDrawable
:
Int
static
val
RecyclerView_fastScrollVerticalThumbDrawable
:
Int
static
val
RecyclerView_fastScrollVerticalTrackDrawable
:
Int
static
val
RecyclerView_layoutManager
:
Int
static
val
RecyclerView_reverseLayout
:
Int
static
val
RecyclerView_spanCount
:
Int
static
val
RecyclerView_stackFromEnd
:
Int
static
val
ScrimInsetsFrameLayout
:
IntArray
static
val
ScrimInsetsFrameLayout_insetForeground
:
Int
static
val
ScrollingViewBehavior_Layout
:
IntArray
static
val
ScrollingViewBehavior_Layout_behavior_overlapTop
:
Int
static
val
SearchView
:
IntArray
static
val
SearchView_android_focusable
:
Int
static
val
SearchView_android_imeOptions
:
Int
static
val
SearchView_android_inputType
:
Int
static
val
SearchView_android_maxWidth
:
Int
static
val
SearchView_closeIcon
:
Int
static
val
SearchView_commitIcon
:
Int
static
val
SearchView_defaultQueryHint
:
Int
static
val
SearchView_goIcon
:
Int
static
val
SearchView_iconifiedByDefault
:
Int
static
val
SearchView_layout
:
Int
static
val
SearchView_queryBackground
:
Int
static
val
SearchView_queryHint
:
Int
static
val
SearchView_searchHintIcon
:
Int
static
val
SearchView_searchIcon
:
Int
static
val
SearchView_submitBackground
:
Int
static
val
SearchView_suggestionRowLayout
:
Int
static
val
SearchView_voiceIcon
:
Int
static
val
Snackbar
:
IntArray
static
val
SnackbarLayout
:
IntArray
static
val
SnackbarLayout_android_maxWidth
:
Int
static
val
SnackbarLayout_elevation
:
Int
static
val
SnackbarLayout_maxActionInlineWidth
:
Int
static
val
Snackbar_snackbarButtonStyle
:
Int
static
val
Snackbar_snackbarStyle
:
Int
static
val
Spinner
:
IntArray
static
val
Spinner_android_dropDownWidth
:
Int
static
val
Spinner_android_entries
:
Int
static
val
Spinner_android_popupBackground
:
Int
static
val
Spinner_android_prompt
:
Int
static
val
Spinner_popupTheme
:
Int
static
val
StateListDrawable
:
IntArray
static
val
StateListDrawableItem
:
IntArray
static
val
StateListDrawableItem_android_drawable
:
Int
static
val
StateListDrawable_android_constantSize
:
Int
static
val
StateListDrawable_android_dither
:
Int
static
val
StateListDrawable_android_enterFadeDuration
:
Int
static
val
StateListDrawable_android_exitFadeDuration
:
Int
static
val
StateListDrawable_android_variablePadding
:
Int
static
val
StateListDrawable_android_visible
:
Int
static
val
SwitchCompat
:
IntArray
static
val
SwitchCompat_android_textOff
:
Int
static
val
SwitchCompat_android_textOn
:
Int
static
val
SwitchCompat_android_thumb
:
Int
static
val
SwitchCompat_showText
:
Int
static
val
SwitchCompat_splitTrack
:
Int
static
val
SwitchCompat_switchMinWidth
:
Int
static
val
SwitchCompat_switchPadding
:
Int
static
val
SwitchCompat_switchTextAppearance
:
Int
static
val
SwitchCompat_thumbTextPadding
:
Int
static
val
SwitchCompat_thumbTint
:
Int
static
val
SwitchCompat_thumbTintMode
:
Int
static
val
SwitchCompat_track
:
Int
static
val
SwitchCompat_trackTint
:
Int
static
val
SwitchCompat_trackTintMode
:
Int
static
val
TabItem
:
IntArray
static
val
TabItem_android_icon
:
Int
static
val
TabItem_android_layout
:
Int
static
val
TabItem_android_text
:
Int
static
val
TabLayout
:
IntArray
static
val
TabLayout_tabBackground
:
Int
static
val
TabLayout_tabContentStart
:
Int
static
val
TabLayout_tabGravity
:
Int
static
val
TabLayout_tabIconTint
:
Int
static
val
TabLayout_tabIconTintMode
:
Int
static
val
TabLayout_tabIndicator
:
Int
static
val
TabLayout_tabIndicatorAnimationDuration
:
Int
static
val
TabLayout_tabIndicatorColor
:
Int
static
val
TabLayout_tabIndicatorFullWidth
:
Int
static
val
TabLayout_tabIndicatorGravity
:
Int
static
val
TabLayout_tabIndicatorHeight
:
Int
static
val
TabLayout_tabInlineLabel
:
Int
static
val
TabLayout_tabMaxWidth
:
Int
static
val
TabLayout_tabMinWidth
:
Int
static
val
TabLayout_tabMode
:
Int
static
val
TabLayout_tabPadding
:
Int
static
val
TabLayout_tabPaddingBottom
:
Int
static
val
TabLayout_tabPaddingEnd
:
Int
static
val
TabLayout_tabPaddingStart
:
Int
static
val
TabLayout_tabPaddingTop
:
Int
static
val
TabLayout_tabRippleColor
:
Int
static
val
TabLayout_tabSelectedTextColor
:
Int
static
val
TabLayout_tabTextAppearance
:
Int
static
val
TabLayout_tabTextColor
:
Int
static
val
TabLayout_tabUnboundedRipple
:
Int
static
val
TextAppearance
:
IntArray
static
val
TextAppearance_android_fontFamily
:
Int
static
val
TextAppearance_android_shadowColor
:
Int
static
val
TextAppearance_android_shadowDx
:
Int
static
val
TextAppearance_android_shadowDy
:
Int
static
val
TextAppearance_android_shadowRadius
:
Int
static
val
TextAppearance_android_textColor
:
Int
static
val
TextAppearance_android_textColorHint
:
Int
static
val
TextAppearance_android_textColorLink
:
Int
static
val
TextAppearance_android_textSize
:
Int
static
val
TextAppearance_android_textStyle
:
Int
static
val
TextAppearance_android_typeface
:
Int
static
val
TextAppearance_fontFamily
:
Int
static
val
TextAppearance_textAllCaps
:
Int
static
val
TextInputLayout
:
IntArray
static
val
TextInputLayout_android_hint
:
Int
static
val
TextInputLayout_android_textColorHint
:
Int
static
val
TextInputLayout_boxBackgroundColor
:
Int
static
val
TextInputLayout_boxBackgroundMode
:
Int
static
val
TextInputLayout_boxCollapsedPaddingTop
:
Int
static
val
TextInputLayout_boxCornerRadiusBottomEnd
:
Int
static
val
TextInputLayout_boxCornerRadiusBottomStart
:
Int
static
val
TextInputLayout_boxCornerRadiusTopEnd
:
Int
static
val
TextInputLayout_boxCornerRadiusTopStart
:
Int
static
val
TextInputLayout_boxStrokeColor
:
Int
static
val
TextInputLayout_boxStrokeWidth
:
Int
static
val
TextInputLayout_counterEnabled
:
Int
static
val
TextInputLayout_counterMaxLength
:
Int
static
val
TextInputLayout_counterOverflowTextAppearance
:
Int
static
val
TextInputLayout_counterTextAppearance
:
Int
static
val
TextInputLayout_errorEnabled
:
Int
static
val
TextInputLayout_errorTextAppearance
:
Int
static
val
TextInputLayout_helperText
:
Int
static
val
TextInputLayout_helperTextEnabled
:
Int
static
val
TextInputLayout_helperTextTextAppearance
:
Int
static
val
TextInputLayout_hintAnimationEnabled
:
Int
static
val
TextInputLayout_hintEnabled
:
Int
static
val
TextInputLayout_hintTextAppearance
:
Int
static
val
TextInputLayout_passwordToggleContentDescription
:
Int
static
val
TextInputLayout_passwordToggleDrawable
:
Int
static
val
TextInputLayout_passwordToggleEnabled
:
Int
static
val
TextInputLayout_passwordToggleTint
:
Int
static
val
TextInputLayout_passwordToggleTintMode
:
Int
static
val
ThemeEnforcement
:
IntArray
static
val
ThemeEnforcement_android_textAppearance
:
Int
static
val
ThemeEnforcement_enforceMaterialTheme
:
Int
static
val
ThemeEnforcement_enforceTextAppearance
:
Int
static
val
Toolbar
:
IntArray
static
val
Toolbar_android_gravity
:
Int
static
val
Toolbar_android_minHeight
:
Int
static
val
Toolbar_buttonGravity
:
Int
static
val
Toolbar_collapseContentDescription
:
Int
static
val
Toolbar_collapseIcon
:
Int
static
val
Toolbar_contentInsetEnd
:
Int
static
val
Toolbar_contentInsetEndWithActions
:
Int
static
val
Toolbar_contentInsetLeft
:
Int
static
val
Toolbar_contentInsetRight
:
Int
static
val
Toolbar_contentInsetStart
:
Int
static
val
Toolbar_contentInsetStartWithNavigation
:
Int
static
val
Toolbar_logo
:
Int
static
val
Toolbar_logoDescription
:
Int
static
val
Toolbar_maxButtonHeight
:
Int
static
val
Toolbar_navigationContentDescription
:
Int
static
val
Toolbar_navigationIcon
:
Int
static
val
Toolbar_popupTheme
:
Int
static
val
Toolbar_subtitle
:
Int
static
val
Toolbar_subtitleTextAppearance
:
Int
static
val
Toolbar_subtitleTextColor
:
Int
static
val
Toolbar_title
:
Int
static
val
Toolbar_titleMargin
:
Int
static
val
Toolbar_titleMarginBottom
:
Int
static
val
Toolbar_titleMarginEnd
:
Int
static
val
Toolbar_titleMarginStart
:
Int
static
val
Toolbar_titleMarginTop
:
Int
static
val
Toolbar_titleMargins
:
Int
static
val
Toolbar_titleTextAppearance
:
Int
static
val
Toolbar_titleTextColor
:
Int
static
val
View
:
IntArray
static
val
ViewBackgroundHelper
:
IntArray
static
val
ViewBackgroundHelper_android_background
:
Int
static
val
ViewBackgroundHelper_backgroundTint
:
Int
static
val
ViewBackgroundHelper_backgroundTintMode
:
Int
static
val
ViewStubCompat
:
IntArray
static
val
ViewStubCompat_android_id
:
Int
static
val
ViewStubCompat_android_inflatedId
:
Int
static
val
ViewStubCompat_android_layout
:
Int
static
val
View_android_focusable
:
Int
static
val
View_android_theme
:
Int
static
val
View_paddingEnd
:
Int
static
val
View_paddingStart
:
Int
static
val
View_theme
:
Int
class
R
Module Contents
R
(
)
class
anim
Module Contents
anim
(
)
static
val
abc_fade_in
:
Int
static
val
abc_fade_out
:
Int
static
val
abc_grow_fade_in_from_bottom
:
Int
static
val
abc_popup_enter
:
Int
static
val
abc_popup_exit
:
Int
static
val
abc_shrink_fade_out_from_bottom
:
Int
static
val
abc_slide_in_bottom
:
Int
static
val
abc_slide_in_top
:
Int
static
val
abc_slide_out_bottom
:
Int
static
val
abc_slide_out_top
:
Int
static
val
abc_tooltip_enter
:
Int
static
val
abc_tooltip_exit
:
Int
static
val
design_bottom_sheet_slide_in
:
Int
static
val
design_bottom_sheet_slide_out
:
Int
static
val
design_snackbar_in
:
Int
static
val
design_snackbar_out
:
Int
class
animator
Module Contents
animator
(
)
static
val
design_appbar_state_list_animator
:
Int
static
val
design_fab_hide_motion_spec
:
Int
static
val
design_fab_show_motion_spec
:
Int
static
val
mtrl_btn_state_list_anim
:
Int
static
val
mtrl_btn_unelevated_state_list_anim
:
Int
static
val
mtrl_chip_state_list_anim
:
Int
static
val
mtrl_fab_hide_motion_spec
:
Int
static
val
mtrl_fab_show_motion_spec
:
Int
static
val
mtrl_fab_transformation_sheet_collapse_spec
:
Int
static
val
mtrl_fab_transformation_sheet_expand_spec
:
Int
class
attr
Module Contents
attr
(
)
static
val
actionBarDivider
:
Int
static
val
actionBarItemBackground
:
Int
static
val
actionBarPopupTheme
:
Int
static
val
actionBarSize
:
Int
static
val
actionBarSplitStyle
:
Int
static
val
actionBarStyle
:
Int
static
val
actionBarTabBarStyle
:
Int
static
val
actionBarTabStyle
:
Int
static
val
actionBarTabTextStyle
:
Int
static
val
actionBarTheme
:
Int
static
val
actionBarWidgetTheme
:
Int
static
val
actionButtonStyle
:
Int
static
val
actionDropDownStyle
:
Int
static
val
actionLayout
:
Int
static
val
actionMenuTextAppearance
:
Int
static
val
actionMenuTextColor
:
Int
static
val
actionModeBackground
:
Int
static
val
actionModeCloseButtonStyle
:
Int
static
val
actionModeCloseDrawable
:
Int
static
val
actionModeCopyDrawable
:
Int
static
val
actionModeCutDrawable
:
Int
static
val
actionModeFindDrawable
:
Int
static
val
actionModePasteDrawable
:
Int
static
val
actionModePopupWindowStyle
:
Int
static
val
actionModeSelectAllDrawable
:
Int
static
val
actionModeShareDrawable
:
Int
static
val
actionModeSplitBackground
:
Int
static
val
actionModeStyle
:
Int
static
val
actionModeWebSearchDrawable
:
Int
static
val
actionOverflowButtonStyle
:
Int
static
val
actionOverflowMenuStyle
:
Int
static
val
actionProviderClass
:
Int
static
val
actionViewClass
:
Int
static
val
activityChooserViewStyle
:
Int
static
val
alertDialogButtonGroupStyle
:
Int
static
val
alertDialogCenterButtons
:
Int
static
val
alertDialogStyle
:
Int
static
val
alertDialogTheme
:
Int
static
val
allowStacking
:
Int
static
val
alpha
:
Int
static
val
alphabeticModifiers
:
Int
static
val
arrowHeadLength
:
Int
static
val
arrowShaftLength
:
Int
static
val
autoCompleteTextViewStyle
:
Int
static
val
autoSizeMaxTextSize
:
Int
static
val
autoSizeMinTextSize
:
Int
static
val
autoSizePresetSizes
:
Int
static
val
autoSizeStepGranularity
:
Int
static
val
autoSizeTextType
:
Int
static
val
background
:
Int
static
val
backgroundSplit
:
Int
static
val
backgroundStacked
:
Int
static
val
backgroundTint
:
Int
static
val
backgroundTintMode
:
Int
static
val
barLength
:
Int
static
val
barrierAllowsGoneWidgets
:
Int
static
val
barrierDirection
:
Int
static
val
behavior_autoHide
:
Int
static
val
behavior_fitToContents
:
Int
static
val
behavior_hideable
:
Int
static
val
behavior_overlapTop
:
Int
static
val
behavior_peekHeight
:
Int
static
val
behavior_skipCollapsed
:
Int
static
val
borderWidth
:
Int
static
val
borderlessButtonStyle
:
Int
static
val
bottomAppBarStyle
:
Int
static
val
bottomNavigationStyle
:
Int
static
val
bottomSheetDialogTheme
:
Int
static
val
bottomSheetStyle
:
Int
static
val
boxBackgroundColor
:
Int
static
val
boxBackgroundMode
:
Int
static
val
boxCollapsedPaddingTop
:
Int
static
val
boxCornerRadiusBottomEnd
:
Int
static
val
boxCornerRadiusBottomStart
:
Int
static
val
boxCornerRadiusTopEnd
:
Int
static
val
boxCornerRadiusTopStart
:
Int
static
val
boxStrokeColor
:
Int
static
val
boxStrokeWidth
:
Int
static
val
buttonBarButtonStyle
:
Int
static
val
buttonBarNegativeButtonStyle
:
Int
static
val
buttonBarNeutralButtonStyle
:
Int
static
val
buttonBarPositiveButtonStyle
:
Int
static
val
buttonBarStyle
:
Int
static
val
buttonGravity
:
Int
static
val
buttonIconDimen
:
Int
static
val
buttonPanelSideLayout
:
Int
static
val
buttonStyle
:
Int
static
val
buttonStyleSmall
:
Int
static
val
buttonTint
:
Int
static
val
buttonTintMode
:
Int
static
val
cardBackgroundColor
:
Int
static
val
cardCornerRadius
:
Int
static
val
cardElevation
:
Int
static
val
cardMaxElevation
:
Int
static
val
cardPreventCornerOverlap
:
Int
static
val
cardUseCompatPadding
:
Int
static
val
cardViewStyle
:
Int
static
val
chainUseRtl
:
Int
static
val
checkboxStyle
:
Int
static
val
checkedChip
:
Int
static
val
checkedIcon
:
Int
static
val
checkedIconEnabled
:
Int
static
val
checkedIconVisible
:
Int
static
val
checkedTextViewStyle
:
Int
static
val
chipBackgroundColor
:
Int
static
val
chipCornerRadius
:
Int
static
val
chipEndPadding
:
Int
static
val
chipGroupStyle
:
Int
static
val
chipIcon
:
Int
static
val
chipIconEnabled
:
Int
static
val
chipIconSize
:
Int
static
val
chipIconTint
:
Int
static
val
chipIconVisible
:
Int
static
val
chipMinHeight
:
Int
static
val
chipSpacing
:
Int
static
val
chipSpacingHorizontal
:
Int
static
val
chipSpacingVertical
:
Int
static
val
chipStandaloneStyle
:
Int
static
val
chipStartPadding
:
Int
static
val
chipStrokeColor
:
Int
static
val
chipStrokeWidth
:
Int
static
val
chipStyle
:
Int
static
val
closeIcon
:
Int
static
val
closeIconEnabled
:
Int
static
val
closeIconEndPadding
:
Int
static
val
closeIconSize
:
Int
static
val
closeIconStartPadding
:
Int
static
val
closeIconTint
:
Int
static
val
closeIconVisible
:
Int
static
val
closeItemLayout
:
Int
static
val
collapseContentDescription
:
Int
static
val
collapseIcon
:
Int
static
val
collapsedTitleGravity
:
Int
static
val
collapsedTitleTextAppearance
:
Int
static
val
color
:
Int
static
val
colorAccent
:
Int
static
val
colorBackgroundFloating
:
Int
static
val
colorButtonNormal
:
Int
static
val
colorControlActivated
:
Int
static
val
colorControlHighlight
:
Int
static
val
colorControlNormal
:
Int
static
val
colorError
:
Int
static
val
colorPrimary
:
Int
static
val
colorPrimaryDark
:
Int
static
val
colorSecondary
:
Int
static
val
colorSwitchThumbNormal
:
Int
static
val
commitIcon
:
Int
static
val
constraintSet
:
Int
static
val
constraint_referenced_ids
:
Int
static
val
content
:
Int
static
val
contentDescription
:
Int
static
val
contentInsetEnd
:
Int
static
val
contentInsetEndWithActions
:
Int
static
val
contentInsetLeft
:
Int
static
val
contentInsetRight
:
Int
static
val
contentInsetStart
:
Int
static
val
contentInsetStartWithNavigation
:
Int
static
val
contentPadding
:
Int
static
val
contentPaddingBottom
:
Int
static
val
contentPaddingLeft
:
Int
static
val
contentPaddingRight
:
Int
static
val
contentPaddingTop
:
Int
static
val
contentScrim
:
Int
static
val
controlBackground
:
Int
static
val
coordinatorLayoutStyle
:
Int
static
val
cornerRadius
:
Int
static
val
counterEnabled
:
Int
static
val
counterMaxLength
:
Int
static
val
counterOverflowTextAppearance
:
Int
static
val
counterTextAppearance
:
Int
static
val
customNavigationLayout
:
Int
static
val
defaultQueryHint
:
Int
static
val
dialogCornerRadius
:
Int
static
val
dialogPreferredPadding
:
Int
static
val
dialogTheme
:
Int
static
val
displayOptions
:
Int
static
val
divider
:
Int
static
val
dividerHorizontal
:
Int
static
val
dividerPadding
:
Int
static
val
dividerVertical
:
Int
static
val
drawableSize
:
Int
static
val
drawerArrowStyle
:
Int
static
val
dropDownListViewStyle
:
Int
static
val
dropdownListPreferredItemHeight
:
Int
static
val
editTextBackground
:
Int
static
val
editTextColor
:
Int
static
val
editTextStyle
:
Int
static
val
elevation
:
Int
static
val
emptyVisibility
:
Int
static
val
enforceMaterialTheme
:
Int
static
val
enforceTextAppearance
:
Int
static
val
errorEnabled
:
Int
static
val
errorTextAppearance
:
Int
static
val
expandActivityOverflowButtonDrawable
:
Int
static
val
expanded
:
Int
static
val
expandedTitleGravity
:
Int
static
val
expandedTitleMargin
:
Int
static
val
expandedTitleMarginBottom
:
Int
static
val
expandedTitleMarginEnd
:
Int
static
val
expandedTitleMarginStart
:
Int
static
val
expandedTitleMarginTop
:
Int
static
val
expandedTitleTextAppearance
:
Int
static
val
fabAlignmentMode
:
Int
static
val
fabCradleMargin
:
Int
static
val
fabCradleRoundedCornerRadius
:
Int
static
val
fabCradleVerticalOffset
:
Int
static
val
fabCustomSize
:
Int
static
val
fabSize
:
Int
static
val
fastScrollEnabled
:
Int
static
val
fastScrollHorizontalThumbDrawable
:
Int
static
val
fastScrollHorizontalTrackDrawable
:
Int
static
val
fastScrollVerticalThumbDrawable
:
Int
static
val
fastScrollVerticalTrackDrawable
:
Int
static
val
firstBaselineToTopHeight
:
Int
static
val
floatingActionButtonStyle
:
Int
static
val
font
:
Int
static
val
fontFamily
:
Int
static
val
fontProviderAuthority
:
Int
static
val
fontProviderCerts
:
Int
static
val
fontProviderFetchStrategy
:
Int
static
val
fontProviderFetchTimeout
:
Int
static
val
fontProviderPackage
:
Int
static
val
fontProviderQuery
:
Int
static
val
fontStyle
:
Int
static
val
fontVariationSettings
:
Int
static
val
fontWeight
:
Int
static
val
foregroundInsidePadding
:
Int
static
val
gapBetweenBars
:
Int
static
val
goIcon
:
Int
static
val
headerLayout
:
Int
static
val
height
:
Int
static
val
helperText
:
Int
static
val
helperTextEnabled
:
Int
static
val
helperTextTextAppearance
:
Int
static
val
hideMotionSpec
:
Int
static
val
hideOnContentScroll
:
Int
static
val
hideOnScroll
:
Int
static
val
hintAnimationEnabled
:
Int
static
val
hintEnabled
:
Int
static
val
hintTextAppearance
:
Int
static
val
homeAsUpIndicator
:
Int
static
val
homeLayout
:
Int
static
val
hoveredFocusedTranslationZ
:
Int
static
val
icon
:
Int
static
val
iconEndPadding
:
Int
static
val
iconGravity
:
Int
static
val
iconPadding
:
Int
static
val
iconSize
:
Int
static
val
iconStartPadding
:
Int
static
val
iconTint
:
Int
static
val
iconTintMode
:
Int
static
val
iconifiedByDefault
:
Int
static
val
imageButtonStyle
:
Int
static
val
indeterminateProgressStyle
:
Int
static
val
initialActivityCount
:
Int
static
val
insetForeground
:
Int
static
val
isLightTheme
:
Int
static
val
itemBackground
:
Int
static
val
itemHorizontalPadding
:
Int
static
val
itemHorizontalTranslationEnabled
:
Int
static
val
itemIconPadding
:
Int
static
val
itemIconSize
:
Int
static
val
itemIconTint
:
Int
static
val
itemPadding
:
Int
static
val
itemSpacing
:
Int
static
val
itemTextAppearance
:
Int
static
val
itemTextAppearanceActive
:
Int
static
val
itemTextAppearanceInactive
:
Int
static
val
itemTextColor
:
Int
static
val
keylines
:
Int
static
val
labelVisibilityMode
:
Int
static
val
lastBaselineToBottomHeight
:
Int
static
val
layout
:
Int
static
val
layoutManager
:
Int
static
val
layout_anchor
:
Int
static
val
layout_anchorGravity
:
Int
static
val
layout_behavior
:
Int
static
val
layout_collapseMode
:
Int
static
val
layout_collapseParallaxMultiplier
:
Int
static
val
layout_constrainedHeight
:
Int
static
val
layout_constrainedWidth
:
Int
static
val
layout_constraintBaseline_creator
:
Int
static
val
layout_constraintBaseline_toBaselineOf
:
Int
static
val
layout_constraintBottom_creator
:
Int
static
val
layout_constraintBottom_toBottomOf
:
Int
static
val
layout_constraintBottom_toTopOf
:
Int
static
val
layout_constraintCircle
:
Int
static
val
layout_constraintCircleAngle
:
Int
static
val
layout_constraintCircleRadius
:
Int
static
val
layout_constraintDimensionRatio
:
Int
static
val
layout_constraintEnd_toEndOf
:
Int
static
val
layout_constraintEnd_toStartOf
:
Int
static
val
layout_constraintGuide_begin
:
Int
static
val
layout_constraintGuide_end
:
Int
static
val
layout_constraintGuide_percent
:
Int
static
val
layout_constraintHeight_default
:
Int
static
val
layout_constraintHeight_max
:
Int
static
val
layout_constraintHeight_min
:
Int
static
val
layout_constraintHeight_percent
:
Int
static
val
layout_constraintHorizontal_bias
:
Int
static
val
layout_constraintHorizontal_chainStyle
:
Int
static
val
layout_constraintHorizontal_weight
:
Int
static
val
layout_constraintLeft_creator
:
Int
static
val
layout_constraintLeft_toLeftOf
:
Int
static
val
layout_constraintLeft_toRightOf
:
Int
static
val
layout_constraintRight_creator
:
Int
static
val
layout_constraintRight_toLeftOf
:
Int
static
val
layout_constraintRight_toRightOf
:
Int
static
val
layout_constraintStart_toEndOf
:
Int
static
val
layout_constraintStart_toStartOf
:
Int
static
val
layout_constraintTop_creator
:
Int
static
val
layout_constraintTop_toBottomOf
:
Int
static
val
layout_constraintTop_toTopOf
:
Int
static
val
layout_constraintVertical_bias
:
Int
static
val
layout_constraintVertical_chainStyle
:
Int
static
val
layout_constraintVertical_weight
:
Int
static
val
layout_constraintWidth_default
:
Int
static
val
layout_constraintWidth_max
:
Int
static
val
layout_constraintWidth_min
:
Int
static
val
layout_constraintWidth_percent
:
Int
static
val
layout_dodgeInsetEdges
:
Int
static
val
layout_editor_absoluteX
:
Int
static
val
layout_editor_absoluteY
:
Int
static
val
layout_goneMarginBottom
:
Int
static
val
layout_goneMarginEnd
:
Int
static
val
layout_goneMarginLeft
:
Int
static
val
layout_goneMarginRight
:
Int
static
val
layout_goneMarginStart
:
Int
static
val
layout_goneMarginTop
:
Int
static
val
layout_insetEdge
:
Int
static
val
layout_keyline
:
Int
static
val
layout_optimizationLevel
:
Int
static
val
layout_scrollFlags
:
Int
static
val
layout_scrollInterpolator
:
Int
static
val
liftOnScroll
:
Int
static
val
lineHeight
:
Int
static
val
lineSpacing
:
Int
static
val
listChoiceBackgroundIndicator
:
Int
static
val
listDividerAlertDialog
:
Int
static
val
listItemLayout
:
Int
static
val
listLayout
:
Int
static
val
listMenuViewStyle
:
Int
static
val
listPopupWindowStyle
:
Int
static
val
listPreferredItemHeight
:
Int
static
val
listPreferredItemHeightLarge
:
Int
static
val
listPreferredItemHeightSmall
:
Int
static
val
listPreferredItemPaddingLeft
:
Int
static
val
listPreferredItemPaddingRight
:
Int
static
val
logo
:
Int
static
val
logoDescription
:
Int
static
val
materialButtonStyle
:
Int
static
val
materialCardViewStyle
:
Int
static
val
maxActionInlineWidth
:
Int
static
val
maxButtonHeight
:
Int
static
val
maxImageSize
:
Int
static
val
measureWithLargestChild
:
Int
static
val
menu
:
Int
static
val
multiChoiceItemLayout
:
Int
static
val
navigationContentDescription
:
Int
static
val
navigationIcon
:
Int
static
val
navigationMode
:
Int
static
val
navigationViewStyle
:
Int
static
val
numericModifiers
:
Int
static
val
overlapAnchor
:
Int
static
val
paddingBottomNoButtons
:
Int
static
val
paddingEnd
:
Int
static
val
paddingStart
:
Int
static
val
paddingTopNoTitle
:
Int
static
val
panelBackground
:
Int
static
val
panelMenuListTheme
:
Int
static
val
panelMenuListWidth
:
Int
static
val
passwordToggleContentDescription
:
Int
static
val
passwordToggleDrawable
:
Int
static
val
passwordToggleEnabled
:
Int
static
val
passwordToggleTint
:
Int
static
val
passwordToggleTintMode
:
Int
static
val
popupMenuStyle
:
Int
static
val
popupTheme
:
Int
static
val
popupWindowStyle
:
Int
static
val
preserveIconSpacing
:
Int
static
val
pressedTranslationZ
:
Int
static
val
progressBarPadding
:
Int
static
val
progressBarStyle
:
Int
static
val
queryBackground
:
Int
static
val
queryHint
:
Int
static
val
radioButtonStyle
:
Int
static
val
ratingBarStyle
:
Int
static
val
ratingBarStyleIndicator
:
Int
static
val
ratingBarStyleSmall
:
Int
static
val
reverseLayout
:
Int
static
val
rippleColor
:
Int
static
val
scrimAnimationDuration
:
Int
static
val
scrimBackground
:
Int
static
val
scrimVisibleHeightTrigger
:
Int
static
val
searchHintIcon
:
Int
static
val
searchIcon
:
Int
static
val
searchViewStyle
:
Int
static
val
seekBarStyle
:
Int
static
val
selectableItemBackground
:
Int
static
val
selectableItemBackgroundBorderless
:
Int
static
val
showAsAction
:
Int
static
val
showDividers
:
Int
static
val
showMotionSpec
:
Int
static
val
showText
:
Int
static
val
showTitle
:
Int
static
val
singleChoiceItemLayout
:
Int
static
val
singleLine
:
Int
static
val
singleSelection
:
Int
static
val
snackbarButtonStyle
:
Int
static
val
snackbarStyle
:
Int
static
val
spanCount
:
Int
static
val
spinBars
:
Int
static
val
spinnerDropDownItemStyle
:
Int
static
val
spinnerStyle
:
Int
static
val
splitTrack
:
Int
static
val
srcCompat
:
Int
static
val
stackFromEnd
:
Int
static
val
state_above_anchor
:
Int
static
val
state_collapsed
:
Int
static
val
state_collapsible
:
Int
static
val
state_liftable
:
Int
static
val
state_lifted
:
Int
static
val
statusBarBackground
:
Int
static
val
statusBarScrim
:
Int
static
val
strokeColor
:
Int
static
val
strokeWidth
:
Int
static
val
subMenuArrow
:
Int
static
val
submitBackground
:
Int
static
val
subtitle
:
Int
static
val
subtitleTextAppearance
:
Int
static
val
subtitleTextColor
:
Int
static
val
subtitleTextStyle
:
Int
static
val
suggestionRowLayout
:
Int
static
val
switchMinWidth
:
Int
static
val
switchPadding
:
Int
static
val
switchStyle
:
Int
static
val
switchTextAppearance
:
Int
static
val
tabBackground
:
Int
static
val
tabContentStart
:
Int
static
val
tabGravity
:
Int
static
val
tabIconTint
:
Int
static
val
tabIconTintMode
:
Int
static
val
tabIndicator
:
Int
static
val
tabIndicatorAnimationDuration
:
Int
static
val
tabIndicatorColor
:
Int
static
val
tabIndicatorFullWidth
:
Int
static
val
tabIndicatorGravity
:
Int
static
val
tabIndicatorHeight
:
Int
static
val
tabInlineLabel
:
Int
static
val
tabMaxWidth
:
Int
static
val
tabMinWidth
:
Int
static
val
tabMode
:
Int
static
val
tabPadding
:
Int
static
val
tabPaddingBottom
:
Int
static
val
tabPaddingEnd
:
Int
static
val
tabPaddingStart
:
Int
static
val
tabPaddingTop
:
Int
static
val
tabRippleColor
:
Int
static
val
tabSelectedTextColor
:
Int
static
val
tabStyle
:
Int
static
val
tabTextAppearance
:
Int
static
val
tabTextColor
:
Int
static
val
tabUnboundedRipple
:
Int
static
val
textAllCaps
:
Int
static
val
textAppearanceBody1
:
Int
static
val
textAppearanceBody2
:
Int
static
val
textAppearanceButton
:
Int
static
val
textAppearanceCaption
:
Int
static
val
textAppearanceHeadline1
:
Int
static
val
textAppearanceHeadline2
:
Int
static
val
textAppearanceHeadline3
:
Int
static
val
textAppearanceHeadline4
:
Int
static
val
textAppearanceHeadline5
:
Int
static
val
textAppearanceHeadline6
:
Int
static
val
textAppearanceLargePopupMenu
:
Int
static
val
textAppearanceListItem
:
Int
static
val
textAppearanceListItemSecondary
:
Int
static
val
textAppearanceListItemSmall
:
Int
static
val
textAppearanceOverline
:
Int
static
val
textAppearancePopupMenuHeader
:
Int
static
val
textAppearanceSearchResultSubtitle
:
Int
static
val
textAppearanceSearchResultTitle
:
Int
static
val
textAppearanceSmallPopupMenu
:
Int
static
val
textAppearanceSubtitle1
:
Int
static
val
textAppearanceSubtitle2
:
Int
static
val
textColorAlertDialogListItem
:
Int
static
val
textColorSearchUrl
:
Int
static
val
textEndPadding
:
Int
static
val
textInputStyle
:
Int
static
val
textStartPadding
:
Int
static
val
theme
:
Int
static
val
thickness
:
Int
static
val
thumbTextPadding
:
Int
static
val
thumbTint
:
Int
static
val
thumbTintMode
:
Int
static
val
tickMark
:
Int
static
val
tickMarkTint
:
Int
static
val
tickMarkTintMode
:
Int
static
val
tint
:
Int
static
val
tintMode
:
Int
static
val
title
:
Int
static
val
titleEnabled
:
Int
static
val
titleMargin
:
Int
static
val
titleMarginBottom
:
Int
static
val
titleMarginEnd
:
Int
static
val
titleMarginStart
:
Int
static
val
titleMarginTop
:
Int
static
val
titleMargins
:
Int
static
val
titleTextAppearance
:
Int
static
val
titleTextColor
:
Int
static
val
titleTextStyle
:
Int
static
val
toolbarId
:
Int
static
val
toolbarNavigationButtonStyle
:
Int
static
val
toolbarStyle
:
Int
static
val
tooltipForegroundColor
:
Int
static
val
tooltipFrameBackground
:
Int
static
val
tooltipText
:
Int
static
val
track
:
Int
static
val
trackTint
:
Int
static
val
trackTintMode
:
Int
static
val
ttcIndex
:
Int
static
val
useCompatPadding
:
Int
static
val
viewInflaterClass
:
Int
static
val
voiceIcon
:
Int
static
val
windowActionBar
:
Int
static
val
windowActionBarOverlay
:
Int
static
val
windowActionModeOverlay
:
Int
static
val
windowFixedHeightMajor
:
Int
static
val
windowFixedHeightMinor
:
Int
static
val
windowFixedWidthMajor
:
Int
static
val
windowFixedWidthMinor
:
Int
static
val
windowMinWidthMajor
:
Int
static
val
windowMinWidthMinor
:
Int
static
val
windowNoTitle
:
Int
class
bool
Module Contents
bool
(
)
static
val
abc_action_bar_embed_tabs
:
Int
static
val
abc_allow_stacked_button_bar
:
Int
static
val
abc_config_actionMenuItemAllCaps
:
Int
static
val
mtrl_btn_textappearance_all_caps
:
Int
class
color
Module Contents
color
(
)
static
val
abc_background_cache_hint_selector_material_dark
:
Int
static
val
abc_background_cache_hint_selector_material_light
:
Int
static
val
abc_btn_colored_borderless_text_material
:
Int
static
val
abc_btn_colored_text_material
:
Int
static
val
abc_color_highlight_material
:
Int
static
val
abc_hint_foreground_material_dark
:
Int
static
val
abc_hint_foreground_material_light
:
Int
static
val
abc_input_method_navigation_guard
:
Int
static
val
abc_primary_text_disable_only_material_dark
:
Int
static
val
abc_primary_text_disable_only_material_light
:
Int
static
val
abc_primary_text_material_dark
:
Int
static
val
abc_primary_text_material_light
:
Int
static
val
abc_search_url_text
:
Int
static
val
abc_search_url_text_normal
:
Int
static
val
abc_search_url_text_pressed
:
Int
static
val
abc_search_url_text_selected
:
Int
static
val
abc_secondary_text_material_dark
:
Int
static
val
abc_secondary_text_material_light
:
Int
static
val
abc_tint_btn_checkable
:
Int
static
val
abc_tint_default
:
Int
static
val
abc_tint_edittext
:
Int
static
val
abc_tint_seek_thumb
:
Int
static
val
abc_tint_spinner
:
Int
static
val
abc_tint_switch_track
:
Int
static
val
accent_material_dark
:
Int
static
val
accent_material_light
:
Int
static
val
background_floating_material_dark
:
Int
static
val
background_floating_material_light
:
Int
static
val
background_material_dark
:
Int
static
val
background_material_light
:
Int
static
val
bright_foreground_disabled_material_dark
:
Int
static
val
bright_foreground_disabled_material_light
:
Int
static
val
bright_foreground_inverse_material_dark
:
Int
static
val
bright_foreground_inverse_material_light
:
Int
static
val
bright_foreground_material_dark
:
Int
static
val
bright_foreground_material_light
:
Int
static
val
button_material_dark
:
Int
static
val
button_material_light
:
Int
static
val
cardview_dark_background
:
Int
static
val
cardview_light_background
:
Int
static
val
cardview_shadow_end_color
:
Int
static
val
cardview_shadow_start_color
:
Int
static
val
cityListBackgroundColor
:
Int
static
val
colorAccent
:
Int
static
val
colorAccentDark
:
Int
static
val
colorError
:
Int
static
val
colorPrimary
:
Int
static
val
colorPrimaryDark
:
Int
static
val
colorPrimaryLight
:
Int
static
val
design_bottom_navigation_shadow_color
:
Int
static
val
design_default_color_primary
:
Int
static
val
design_default_color_primary_dark
:
Int
static
val
design_error
:
Int
static
val
design_fab_shadow_end_color
:
Int
static
val
design_fab_shadow_mid_color
:
Int
static
val
design_fab_shadow_start_color
:
Int
static
val
design_fab_stroke_end_inner_color
:
Int
static
val
design_fab_stroke_end_outer_color
:
Int
static
val
design_fab_stroke_top_inner_color
:
Int
static
val
design_fab_stroke_top_outer_color
:
Int
static
val
design_snackbar_background_color
:
Int
static
val
design_tint_password_toggle
:
Int
static
val
dim_foreground_disabled_material_dark
:
Int
static
val
dim_foreground_disabled_material_light
:
Int
static
val
dim_foreground_material_dark
:
Int
static
val
dim_foreground_material_light
:
Int
static
val
error_color_material_dark
:
Int
static
val
error_color_material_light
:
Int
static
val
foreground_material_dark
:
Int
static
val
foreground_material_light
:
Int
static
val
highlighted_text_material_dark
:
Int
static
val
highlighted_text_material_light
:
Int
static
val
ic_launcher_background
:
Int
static
val
loginPageBackgroundColor
:
Int
static
val
material_blue_grey_800
:
Int
static
val
material_blue_grey_900
:
Int
static
val
material_blue_grey_950
:
Int
static
val
material_deep_teal_200
:
Int
static
val
material_deep_teal_500
:
Int
static
val
material_grey_100
:
Int
static
val
material_grey_300
:
Int
static
val
material_grey_50
:
Int
static
val
material_grey_600
:
Int
static
val
material_grey_800
:
Int
static
val
material_grey_850
:
Int
static
val
material_grey_900
:
Int
static
val
mtrl_bottom_nav_colored_item_tint
:
Int
static
val
mtrl_bottom_nav_item_tint
:
Int
static
val
mtrl_btn_bg_color_disabled
:
Int
static
val
mtrl_btn_bg_color_selector
:
Int
static
val
mtrl_btn_ripple_color
:
Int
static
val
mtrl_btn_stroke_color_selector
:
Int
static
val
mtrl_btn_text_btn_ripple_color
:
Int
static
val
mtrl_btn_text_color_disabled
:
Int
static
val
mtrl_btn_text_color_selector
:
Int
static
val
mtrl_btn_transparent_bg_color
:
Int
static
val
mtrl_chip_background_color
:
Int
static
val
mtrl_chip_close_icon_tint
:
Int
static
val
mtrl_chip_ripple_color
:
Int
static
val
mtrl_chip_text_color
:
Int
static
val
mtrl_fab_ripple_color
:
Int
static
val
mtrl_scrim_color
:
Int
static
val
mtrl_tabs_colored_ripple_color
:
Int
static
val
mtrl_tabs_icon_color_selector
:
Int
static
val
mtrl_tabs_icon_color_selector_colored
:
Int
static
val
mtrl_tabs_legacy_text_color_selector
:
Int
static
val
mtrl_tabs_ripple_color
:
Int
static
val
mtrl_text_btn_text_color_selector
:
Int
static
val
mtrl_textinput_default_box_stroke_color
:
Int
static
val
mtrl_textinput_disabled_color
:
Int
static
val
mtrl_textinput_filled_box_default_background_color
:
Int
static
val
mtrl_textinput_hovered_box_stroke_color
:
Int
static
val
notification_action_color_filter
:
Int
static
val
notification_icon_bg_color
:
Int
static
val
notification_material_background_media_default_color
:
Int
static
val
primary_dark_material_dark
:
Int
static
val
primary_dark_material_light
:
Int
static
val
primary_material_dark
:
Int
static
val
primary_material_light
:
Int
static
val
primary_text_default_material_dark
:
Int
static
val
primary_text_default_material_light
:
Int
static
val
primary_text_disabled_material_dark
:
Int
static
val
primary_text_disabled_material_light
:
Int
static
val
ripple_material_dark
:
Int
static
val
ripple_material_light
:
Int
static
val
secondary_text_default_material_dark
:
Int
static
val
secondary_text_default_material_light
:
Int
static
val
secondary_text_disabled_material_dark
:
Int
static
val
secondary_text_disabled_material_light
:
Int
static
val
switch_thumb_disabled_material_dark
:
Int
static
val
switch_thumb_disabled_material_light
:
Int
static
val
switch_thumb_material_dark
:
Int
static
val
switch_thumb_material_light
:
Int
static
val
switch_thumb_normal_material_dark
:
Int
static
val
switch_thumb_normal_material_light
:
Int
static
val
tooltip_background_dark
:
Int
static
val
tooltip_background_light
:
Int
class
dimen
Module Contents
dimen
(
)
static
val
abc_action_bar_content_inset_material
:
Int
static
val
abc_action_bar_content_inset_with_nav
:
Int
static
val
abc_action_bar_default_height_material
:
Int
static
val
abc_action_bar_default_padding_end_material
:
Int
static
val
abc_action_bar_default_padding_start_material
:
Int
static
val
abc_action_bar_elevation_material
:
Int
static
val
abc_action_bar_icon_vertical_padding_material
:
Int
static
val
abc_action_bar_overflow_padding_end_material
:
Int
static
val
abc_action_bar_overflow_padding_start_material
:
Int
static
val
abc_action_bar_stacked_max_height
:
Int
static
val
abc_action_bar_stacked_tab_max_width
:
Int
static
val
abc_action_bar_subtitle_bottom_margin_material
:
Int
static
val
abc_action_bar_subtitle_top_margin_material
:
Int
static
val
abc_action_button_min_height_material
:
Int
static
val
abc_action_button_min_width_material
:
Int
static
val
abc_action_button_min_width_overflow_material
:
Int
static
val
abc_alert_dialog_button_bar_height
:
Int
static
val
abc_alert_dialog_button_dimen
:
Int
static
val
abc_button_inset_horizontal_material
:
Int
static
val
abc_button_inset_vertical_material
:
Int
static
val
abc_button_padding_horizontal_material
:
Int
static
val
abc_button_padding_vertical_material
:
Int
static
val
abc_cascading_menus_min_smallest_width
:
Int
static
val
abc_config_prefDialogWidth
:
Int
static
val
abc_control_corner_material
:
Int
static
val
abc_control_inset_material
:
Int
static
val
abc_control_padding_material
:
Int
static
val
abc_dialog_corner_radius_material
:
Int
static
val
abc_dialog_fixed_height_major
:
Int
static
val
abc_dialog_fixed_height_minor
:
Int
static
val
abc_dialog_fixed_width_major
:
Int
static
val
abc_dialog_fixed_width_minor
:
Int
static
val
abc_dialog_list_padding_bottom_no_buttons
:
Int
static
val
abc_dialog_list_padding_top_no_title
:
Int
static
val
abc_dialog_min_width_major
:
Int
static
val
abc_dialog_min_width_minor
:
Int
static
val
abc_dialog_padding_material
:
Int
static
val
abc_dialog_padding_top_material
:
Int
static
val
abc_dialog_title_divider_material
:
Int
static
val
abc_disabled_alpha_material_dark
:
Int
static
val
abc_disabled_alpha_material_light
:
Int
static
val
abc_dropdownitem_icon_width
:
Int
static
val
abc_dropdownitem_text_padding_left
:
Int
static
val
abc_dropdownitem_text_padding_right
:
Int
static
val
abc_edit_text_inset_bottom_material
:
Int
static
val
abc_edit_text_inset_horizontal_material
:
Int
static
val
abc_edit_text_inset_top_material
:
Int
static
val
abc_floating_window_z
:
Int
static
val
abc_list_item_padding_horizontal_material
:
Int
static
val
abc_panel_menu_list_width
:
Int
static
val
abc_progress_bar_height_material
:
Int
static
val
abc_search_view_preferred_height
:
Int
static
val
abc_search_view_preferred_width
:
Int
static
val
abc_seekbar_track_background_height_material
:
Int
static
val
abc_seekbar_track_progress_height_material
:
Int
static
val
abc_select_dialog_padding_start_material
:
Int
static
val
abc_switch_padding
:
Int
static
val
abc_text_size_body_1_material
:
Int
static
val
abc_text_size_body_2_material
:
Int
static
val
abc_text_size_button_material
:
Int
static
val
abc_text_size_caption_material
:
Int
static
val
abc_text_size_display_1_material
:
Int
static
val
abc_text_size_display_2_material
:
Int
static
val
abc_text_size_display_3_material
:
Int
static
val
abc_text_size_display_4_material
:
Int
static
val
abc_text_size_headline_material
:
Int
static
val
abc_text_size_large_material
:
Int
static
val
abc_text_size_medium_material
:
Int
static
val
abc_text_size_menu_header_material
:
Int
static
val
abc_text_size_menu_material
:
Int
static
val
abc_text_size_small_material
:
Int
static
val
abc_text_size_subhead_material
:
Int
static
val
abc_text_size_subtitle_material_toolbar
:
Int
static
val
abc_text_size_title_material
:
Int
static
val
abc_text_size_title_material_toolbar
:
Int
static
val
activity_horizontal_margin
:
Int
static
val
activity_vertical_margin
:
Int
static
val
cardview_compat_inset_shadow
:
Int
static
val
cardview_default_elevation
:
Int
static
val
cardview_default_radius
:
Int
static
val
compat_button_inset_horizontal_material
:
Int
static
val
compat_button_inset_vertical_material
:
Int
static
val
compat_button_padding_horizontal_material
:
Int
static
val
compat_button_padding_vertical_material
:
Int
static
val
compat_control_corner_material
:
Int
static
val
compat_notification_large_icon_max_height
:
Int
static
val
compat_notification_large_icon_max_width
:
Int
static
val
design_appbar_elevation
:
Int
static
val
design_bottom_navigation_active_item_max_width
:
Int
static
val
design_bottom_navigation_active_item_min_width
:
Int
static
val
design_bottom_navigation_active_text_size
:
Int
static
val
design_bottom_navigation_elevation
:
Int
static
val
design_bottom_navigation_height
:
Int
static
val
design_bottom_navigation_icon_size
:
Int
static
val
design_bottom_navigation_item_max_width
:
Int
static
val
design_bottom_navigation_item_min_width
:
Int
static
val
design_bottom_navigation_margin
:
Int
static
val
design_bottom_navigation_shadow_height
:
Int
static
val
design_bottom_navigation_text_size
:
Int
static
val
design_bottom_sheet_modal_elevation
:
Int
static
val
design_bottom_sheet_peek_height_min
:
Int
static
val
design_fab_border_width
:
Int
static
val
design_fab_elevation
:
Int
static
val
design_fab_image_size
:
Int
static
val
design_fab_size_mini
:
Int
static
val
design_fab_size_normal
:
Int
static
val
design_fab_translation_z_hovered_focused
:
Int
static
val
design_fab_translation_z_pressed
:
Int
static
val
design_navigation_elevation
:
Int
static
val
design_navigation_icon_padding
:
Int
static
val
design_navigation_icon_size
:
Int
static
val
design_navigation_item_horizontal_padding
:
Int
static
val
design_navigation_item_icon_padding
:
Int
static
val
design_navigation_max_width
:
Int
static
val
design_navigation_padding_bottom
:
Int
static
val
design_navigation_separator_vertical_padding
:
Int
static
val
design_snackbar_action_inline_max_width
:
Int
static
val
design_snackbar_background_corner_radius
:
Int
static
val
design_snackbar_elevation
:
Int
static
val
design_snackbar_extra_spacing_horizontal
:
Int
static
val
design_snackbar_max_width
:
Int
static
val
design_snackbar_min_width
:
Int
static
val
design_snackbar_padding_horizontal
:
Int
static
val
design_snackbar_padding_vertical
:
Int
static
val
design_snackbar_padding_vertical_2lines
:
Int
static
val
design_snackbar_text_size
:
Int
static
val
design_tab_max_width
:
Int
static
val
design_tab_scrollable_min_width
:
Int
static
val
design_tab_text_size
:
Int
static
val
design_tab_text_size_2line
:
Int
static
val
design_textinput_caption_translate_y
:
Int
static
val
disabled_alpha_material_dark
:
Int
static
val
disabled_alpha_material_light
:
Int
static
val
fastscroll_default_thickness
:
Int
static
val
fastscroll_margin
:
Int
static
val
fastscroll_minimum_range
:
Int
static
val
highlight_alpha_material_colored
:
Int
static
val
highlight_alpha_material_dark
:
Int
static
val
highlight_alpha_material_light
:
Int
static
val
hint_alpha_material_dark
:
Int
static
val
hint_alpha_material_light
:
Int
static
val
hint_pressed_alpha_material_dark
:
Int
static
val
hint_pressed_alpha_material_light
:
Int
static
val
item_touch_helper_max_drag_scroll_per_frame
:
Int
static
val
item_touch_helper_swipe_escape_max_velocity
:
Int
static
val
item_touch_helper_swipe_escape_velocity
:
Int
static
val
mtrl_bottomappbar_fabOffsetEndMode
:
Int
static
val
mtrl_bottomappbar_fab_cradle_margin
:
Int
static
val
mtrl_bottomappbar_fab_cradle_rounded_corner_radius
:
Int
static
val
mtrl_bottomappbar_fab_cradle_vertical_offset
:
Int
static
val
mtrl_bottomappbar_height
:
Int
static
val
mtrl_btn_corner_radius
:
Int
static
val
mtrl_btn_dialog_btn_min_width
:
Int
static
val
mtrl_btn_disabled_elevation
:
Int
static
val
mtrl_btn_disabled_z
:
Int
static
val
mtrl_btn_elevation
:
Int
static
val
mtrl_btn_focused_z
:
Int
static
val
mtrl_btn_hovered_z
:
Int
static
val
mtrl_btn_icon_btn_padding_left
:
Int
static
val
mtrl_btn_icon_padding
:
Int
static
val
mtrl_btn_inset
:
Int
static
val
mtrl_btn_letter_spacing
:
Int
static
val
mtrl_btn_padding_bottom
:
Int
static
val
mtrl_btn_padding_left
:
Int
static
val
mtrl_btn_padding_right
:
Int
static
val
mtrl_btn_padding_top
:
Int
static
val
mtrl_btn_pressed_z
:
Int
static
val
mtrl_btn_stroke_size
:
Int
static
val
mtrl_btn_text_btn_icon_padding
:
Int
static
val
mtrl_btn_text_btn_padding_left
:
Int
static
val
mtrl_btn_text_btn_padding_right
:
Int
static
val
mtrl_btn_text_size
:
Int
static
val
mtrl_btn_z
:
Int
static
val
mtrl_card_elevation
:
Int
static
val
mtrl_card_spacing
:
Int
static
val
mtrl_chip_pressed_translation_z
:
Int
static
val
mtrl_chip_text_size
:
Int
static
val
mtrl_fab_elevation
:
Int
static
val
mtrl_fab_translation_z_hovered_focused
:
Int
static
val
mtrl_fab_translation_z_pressed
:
Int
static
val
mtrl_navigation_elevation
:
Int
static
val
mtrl_navigation_item_horizontal_padding
:
Int
static
val
mtrl_navigation_item_icon_padding
:
Int
static
val
mtrl_snackbar_background_corner_radius
:
Int
static
val
mtrl_snackbar_margin
:
Int
static
val
mtrl_textinput_box_bottom_offset
:
Int
static
val
mtrl_textinput_box_corner_radius_medium
:
Int
static
val
mtrl_textinput_box_corner_radius_small
:
Int
static
val
mtrl_textinput_box_label_cutout_padding
:
Int
static
val
mtrl_textinput_box_padding_end
:
Int
static
val
mtrl_textinput_box_stroke_width_default
:
Int
static
val
mtrl_textinput_box_stroke_width_focused
:
Int
static
val
mtrl_textinput_outline_box_expanded_padding
:
Int
static
val
mtrl_toolbar_default_height
:
Int
static
val
notification_action_icon_size
:
Int
static
val
notification_action_text_size
:
Int
static
val
notification_big_circle_margin
:
Int
static
val
notification_content_margin_start
:
Int
static
val
notification_large_icon_height
:
Int
static
val
notification_large_icon_width
:
Int
static
val
notification_main_column_padding_top
:
Int
static
val
notification_media_narrow_margin
:
Int
static
val
notification_right_icon_size
:
Int
static
val
notification_right_side_padding_top
:
Int
static
val
notification_small_icon_background_padding
:
Int
static
val
notification_small_icon_size_as_large
:
Int
static
val
notification_subtext_size
:
Int
static
val
notification_top_pad
:
Int
static
val
notification_top_pad_large_text
:
Int
static
val
shr_product_card_image_height
:
Int
static
val
shr_product_grid_reveal_height
:
Int
static
val
shr_product_grid_spacing
:
Int
static
val
shr_product_grid_spacing_small
:
Int
static
val
shr_staggered_product_grid_card_height_landscape
:
Int
static
val
shr_staggered_product_grid_card_height_portrait
:
Int
static
val
shr_staggered_product_grid_card_width_landscape
:
Int
static
val
shr_staggered_product_grid_card_width_portrait
:
Int
static
val
shr_staggered_product_grid_margin_top_first
:
Int
static
val
shr_staggered_product_grid_margin_top_second
:
Int
static
val
shr_staggered_product_grid_margin_top_third
:
Int
static
val
shr_staggered_product_grid_spacing_large
:
Int
static
val
shr_staggered_product_grid_spacing_small
:
Int
static
val
subtitle_corner_radius
:
Int
static
val
subtitle_outline_width
:
Int
static
val
subtitle_shadow_offset
:
Int
static
val
subtitle_shadow_radius
:
Int
static
val
tooltip_corner_radius
:
Int
static
val
tooltip_horizontal_padding
:
Int
static
val
tooltip_margin
:
Int
static
val
tooltip_precise_anchor_extra_offset
:
Int
static
val
tooltip_precise_anchor_threshold
:
Int
static
val
tooltip_vertical_padding
:
Int
static
val
tooltip_y_offset_non_touch
:
Int
static
val
tooltip_y_offset_touch
:
Int
class
drawable
Module Contents
drawable
(
)
static
val
abc_ab_share_pack_mtrl_alpha
:
Int
static
val
abc_action_bar_item_background_material
:
Int
static
val
abc_btn_borderless_material
:
Int
static
val
abc_btn_check_material
:
Int
static
val
abc_btn_check_to_on_mtrl_000
:
Int
static
val
abc_btn_check_to_on_mtrl_015
:
Int
static
val
abc_btn_colored_material
:
Int
static
val
abc_btn_default_mtrl_shape
:
Int
static
val
abc_btn_radio_material
:
Int
static
val
abc_btn_radio_to_on_mtrl_000
:
Int
static
val
abc_btn_radio_to_on_mtrl_015
:
Int
static
val
abc_btn_switch_to_on_mtrl_00001
:
Int
static
val
abc_btn_switch_to_on_mtrl_00012
:
Int
static
val
abc_cab_background_internal_bg
:
Int
static
val
abc_cab_background_top_material
:
Int
static
val
abc_cab_background_top_mtrl_alpha
:
Int
static
val
abc_control_background_material
:
Int
static
val
abc_dialog_material_background
:
Int
static
val
abc_edit_text_material
:
Int
static
val
abc_ic_ab_back_material
:
Int
static
val
abc_ic_arrow_drop_right_black_24dp
:
Int
static
val
abc_ic_clear_material
:
Int
static
val
abc_ic_commit_search_api_mtrl_alpha
:
Int
static
val
abc_ic_go_search_api_material
:
Int
static
val
abc_ic_menu_copy_mtrl_am_alpha
:
Int
static
val
abc_ic_menu_cut_mtrl_alpha
:
Int
static
val
abc_ic_menu_overflow_material
:
Int
static
val
abc_ic_menu_paste_mtrl_am_alpha
:
Int
static
val
abc_ic_menu_selectall_mtrl_alpha
:
Int
static
val
abc_ic_menu_share_mtrl_alpha
:
Int
static
val
abc_ic_search_api_material
:
Int
static
val
abc_ic_star_black_16dp
:
Int
static
val
abc_ic_star_black_36dp
:
Int
static
val
abc_ic_star_black_48dp
:
Int
static
val
abc_ic_star_half_black_16dp
:
Int
static
val
abc_ic_star_half_black_36dp
:
Int
static
val
abc_ic_star_half_black_48dp
:
Int
static
val
abc_ic_voice_search_api_material
:
Int
static
val
abc_item_background_holo_dark
:
Int
static
val
abc_item_background_holo_light
:
Int
static
val
abc_list_divider_material
:
Int
static
val
abc_list_divider_mtrl_alpha
:
Int
static
val
abc_list_focused_holo
:
Int
static
val
abc_list_longpressed_holo
:
Int
static
val
abc_list_pressed_holo_dark
:
Int
static
val
abc_list_pressed_holo_light
:
Int
static
val
abc_list_selector_background_transition_holo_dark
:
Int
static
val
abc_list_selector_background_transition_holo_light
:
Int
static
val
abc_list_selector_disabled_holo_dark
:
Int
static
val
abc_list_selector_disabled_holo_light
:
Int
static
val
abc_list_selector_holo_dark
:
Int
static
val
abc_list_selector_holo_light
:
Int
static
val
abc_menu_hardkey_panel_mtrl_mult
:
Int
static
val
abc_popup_background_mtrl_mult
:
Int
static
val
abc_ratingbar_indicator_material
:
Int
static
val
abc_ratingbar_material
:
Int
static
val
abc_ratingbar_small_material
:
Int
static
val
abc_scrubber_control_off_mtrl_alpha
:
Int
static
val
abc_scrubber_control_to_pressed_mtrl_000
:
Int
static
val
abc_scrubber_control_to_pressed_mtrl_005
:
Int
static
val
abc_scrubber_primary_mtrl_alpha
:
Int
static
val
abc_scrubber_track_mtrl_alpha
:
Int
static
val
abc_seekbar_thumb_material
:
Int
static
val
abc_seekbar_tick_mark_material
:
Int
static
val
abc_seekbar_track_material
:
Int
static
val
abc_spinner_mtrl_am_alpha
:
Int
static
val
abc_spinner_textfield_background_material
:
Int
static
val
abc_switch_thumb_material
:
Int
static
val
abc_switch_track_mtrl_alpha
:
Int
static
val
abc_tab_indicator_material
:
Int
static
val
abc_tab_indicator_mtrl_alpha
:
Int
static
val
abc_text_cursor_material
:
Int
static
val
abc_text_select_handle_left_mtrl_dark
:
Int
static
val
abc_text_select_handle_left_mtrl_light
:
Int
static
val
abc_text_select_handle_middle_mtrl_dark
:
Int
static
val
abc_text_select_handle_middle_mtrl_light
:
Int
static
val
abc_text_select_handle_right_mtrl_dark
:
Int
static
val
abc_text_select_handle_right_mtrl_light
:
Int
static
val
abc_textfield_activated_mtrl_alpha
:
Int
static
val
abc_textfield_default_mtrl_alpha
:
Int
static
val
abc_textfield_search_activated_mtrl_alpha
:
Int
static
val
abc_textfield_search_default_mtrl_alpha
:
Int
static
val
abc_textfield_search_material
:
Int
static
val
abc_vector_test
:
Int
static
val
avd_hide_password
:
Int
static
val
avd_show_password
:
Int
static
val
design_bottom_navigation_item_background
:
Int
static
val
design_fab_background
:
Int
static
val
design_ic_visibility
:
Int
static
val
design_ic_visibility_off
:
Int
static
val
design_password_eye
:
Int
static
val
design_snackbar_background
:
Int
static
val
ic_add_24dp
:
Int
static
val
ic_favorite_24dp
:
Int
static
val
ic_favorite_border_24dp
:
Int
static
val
ic_icon
:
Int
static
val
ic_launcher_background
:
Int
static
val
ic_launcher_foreground
:
Int
static
val
ic_mtrl_chip_checked_black
:
Int
static
val
ic_mtrl_chip_checked_circle
:
Int
static
val
ic_mtrl_chip_close_circle
:
Int
static
val
ic_no_internet_background
:
Int
static
val
ic_registration_background
:
Int
static
val
ic_search_24dp
:
Int
static
val
ic_star_border_16dp
:
Int
static
val
mtrl_snackbar_background
:
Int
static
val
mtrl_tabs_default_indicator
:
Int
static
val
navigation_empty_icon
:
Int
static
val
notification_action_background
:
Int
static
val
notification_bg
:
Int
static
val
notification_bg_low
:
Int
static
val
notification_bg_low_normal
:
Int
static
val
notification_bg_low_pressed
:
Int
static
val
notification_bg_normal
:
Int
static
val
notification_bg_normal_pressed
:
Int
static
val
notification_icon_background
:
Int
static
val
notification_template_icon_bg
:
Int
static
val
notification_template_icon_low_bg
:
Int
static
val
notification_tile_bg
:
Int
static
val
notify_panel_notification_icon_bg
:
Int
static
val
tooltip_frame_dark
:
Int
static
val
tooltip_frame_light
:
Int
class
id
Module Contents
id
(
)
static
val
ALT
:
Int
static
val
CTRL
:
Int
static
val
FUNCTION
:
Int
static
val
META
:
Int
static
val
SHIFT
:
Int
static
val
SYM
:
Int
static
val
account_menu
:
Int
static
val
action0
:
Int
static
val
action_bar
:
Int
static
val
action_bar_activity_content
:
Int
static
val
action_bar_container
:
Int
static
val
action_bar_root
:
Int
static
val
action_bar_spinner
:
Int
static
val
action_bar_subtitle
:
Int
static
val
action_bar_title
:
Int
static
val
action_container
:
Int
static
val
action_context_bar
:
Int
static
val
action_divider
:
Int
static
val
action_image
:
Int
static
val
action_menu_divider
:
Int
static
val
action_menu_presenter
:
Int
static
val
action_mode_bar
:
Int
static
val
action_mode_bar_stub
:
Int
static
val
action_mode_close_button
:
Int
static
val
action_text
:
Int
static
val
actions
:
Int
static
val
activity_chooser_view_content
:
Int
static
val
add
:
Int
static
val
alertTitle
:
Int
static
val
all
:
Int
static
val
always
:
Int
static
val
amount_of_likes
:
Int
static
val
amount_of_posts
:
Int
static
val
async
:
Int
static
val
author_name
:
Int
static
val
auto
:
Int
static
val
back_button
:
Int
static
val
barrier
:
Int
static
val
beginning
:
Int
static
val
blocking
:
Int
static
val
bottom
:
Int
static
val
buttonPanel
:
Int
static
val
cancel_action
:
Int
static
val
center
:
Int
static
val
center_horizontal
:
Int
static
val
center_vertical
:
Int
static
val
chains
:
Int
static
val
checkbox
:
Int
static
val
chronometer
:
Int
static
val
city_image
:
Int
static
val
city_list
:
Int
static
val
city_text
:
Int
static
val
clip_horizontal
:
Int
static
val
clip_vertical
:
Int
static
val
collapseActionView
:
Int
static
val
confirm_password_edit_text_reg
:
Int
static
val
confirm_password_text_input_reg
:
Int
static
val
confirm_registreer_button
:
Int
static
val
container
:
Int
static
val
container_add_post
:
Int
static
val
content
:
Int
static
val
contentPanel
:
Int
static
val
coordinator
:
Int
static
val
custom
:
Int
static
val
customPanel
:
Int
static
val
date_post
:
Int
static
val
decor_content_parent
:
Int
static
val
default_activity_button
:
Int
static
val
design_bottom_sheet
:
Int
static
val
design_menu_item_action_area
:
Int
static
val
design_menu_item_action_area_stub
:
Int
static
val
design_menu_item_text
:
Int
static
val
design_navigation_view
:
Int
static
val
dimensions
:
Int
static
val
direct
:
Int
static
val
disableHome
:
Int
static
val
edit_query
:
Int
static
val
end
:
Int
static
val
end_padder
:
Int
static
val
enterAlways
:
Int
static
val
enterAlwaysCollapsed
:
Int
static
val
exitUntilCollapsed
:
Int
static
val
expand_activities_button
:
Int
static
val
expanded_menu
:
Int
static
val
fill
:
Int
static
val
fill_horizontal
:
Int
static
val
fill_vertical
:
Int
static
val
filled
:
Int
static
val
fixed
:
Int
static
val
floatingActionButton
:
Int
static
val
forever
:
Int
static
val
ghost_view
:
Int
static
val
gone
:
Int
static
val
group_divider
:
Int
static
val
groups
:
Int
static
val
home
:
Int
static
val
homeAsUp
:
Int
static
val
icon
:
Int
static
val
icon_group
:
Int
static
val
ifRoom
:
Int
static
val
image
:
Int
static
val
imageView
:
Int
static
val
info
:
Int
static
val
invisible
:
Int
static
val
italic
:
Int
static
val
item_touch_helper_previous_elevation
:
Int
static
val
labeled
:
Int
static
val
largeLabel
:
Int
static
val
left
:
Int
static
val
like_action_button
:
Int
static
val
line1
:
Int
static
val
line3
:
Int
static
val
listMode
:
Int
static
val
list_item
:
Int
static
val
masked
:
Int
static
val
media_actions
:
Int
static
val
message
:
Int
static
val
middle
:
Int
static
val
mini
:
Int
static
val
mtrl_child_content_container
:
Int
static
val
mtrl_internal_children_alpha_tag
:
Int
static
val
multiply
:
Int
static
val
navigation_header_container
:
Int
static
val
never
:
Int
static
val
next_button
:
Int
static
val
none
:
Int
static
val
normal
:
Int
static
val
notification_background
:
Int
static
val
notification_main_column
:
Int
static
val
notification_main_column_container
:
Int
static
val
outline
:
Int
static
val
packed
:
Int
static
val
parallax
:
Int
static
val
parent
:
Int
static
val
parentPanel
:
Int
static
val
parent_matrix
:
Int
static
val
password_edit_text
:
Int
static
val
password_edit_text_reg
:
Int
static
val
password_text_input
:
Int
static
val
password_text_input_reg
:
Int
static
val
percent
:
Int
static
val
pin
:
Int
static
val
post_body
:
Int
static
val
post_body_edit_text
:
Int
static
val
post_body_text_input
:
Int
static
val
post_button
:
Int
static
val
post_title_edit_text
:
Int
static
val
post_title_text_input
:
Int
static
val
progress_circular
:
Int
static
val
progress_horizontal
:
Int
static
val
radio
:
Int
static
val
recycleView
:
Int
static
val
recycler_view
:
Int
static
val
recycler_view_posts
:
Int
static
val
registreer_button
:
Int
static
val
right
:
Int
static
val
right_icon
:
Int
static
val
right_side
:
Int
static
val
save_image_matrix
:
Int
static
val
save_non_transition_alpha
:
Int
static
val
save_scale_type
:
Int
static
val
screen
:
Int
static
val
scroll
:
Int
static
val
scrollIndicatorDown
:
Int
static
val
scrollIndicatorUp
:
Int
static
val
scrollView
:
Int
static
val
scrollable
:
Int
static
val
search_badge
:
Int
static
val
search_bar
:
Int
static
val
search_button
:
Int
static
val
search_close_btn
:
Int
static
val
search_edit_frame
:
Int
static
val
search_go_btn
:
Int
static
val
search_mag_icon
:
Int
static
val
search_menu
:
Int
static
val
search_plate
:
Int
static
val
search_src_text
:
Int
static
val
search_voice_btn
:
Int
static
val
select_dialog_listview
:
Int
static
val
selected
:
Int
static
val
shortcut
:
Int
static
val
showCustom
:
Int
static
val
showHome
:
Int
static
val
showTitle
:
Int
static
val
smallLabel
:
Int
static
val
snackbar_action
:
Int
static
val
snackbar_text
:
Int
static
val
snap
:
Int
static
val
snapMargins
:
Int
static
val
spacer
:
Int
static
val
spinner_pinboards
:
Int
static
val
split_action_bar
:
Int
static
val
spread
:
Int
static
val
spread_inside
:
Int
static
val
src_atop
:
Int
static
val
src_in
:
Int
static
val
src_over
:
Int
static
val
standard
:
Int
static
val
start
:
Int
static
val
status_bar_latest_event_content
:
Int
static
val
stretch
:
Int
static
val
submenuarrow
:
Int
static
val
submit_area
:
Int
static
val
tabMode
:
Int
static
val
tag_transition_group
:
Int
static
val
tag_unhandled_key_event_manager
:
Int
static
val
tag_unhandled_key_listeners
:
Int
static
val
text
:
Int
static
val
text2
:
Int
static
val
textSpacerNoButtons
:
Int
static
val
textSpacerNoTitle
:
Int
static
val
textStart
:
Int
static
val
textView2
:
Int
static
val
text_input_password_toggle
:
Int
static
val
textinput_counter
:
Int
static
val
textinput_error
:
Int
static
val
textinput_helper_text
:
Int
static
val
time
:
Int
static
val
title
:
Int
static
val
titleDividerNoCustom
:
Int
static
val
title_post
:
Int
static
val
title_template
:
Int
static
val
top
:
Int
static
val
topPanel
:
Int
static
val
touch_outside
:
Int
static
val
transition_current_scene
:
Int
static
val
transition_layout_save
:
Int
static
val
transition_position
:
Int
static
val
transition_scene_layoutid_cache
:
Int
static
val
transition_transform
:
Int
static
val
uniform
:
Int
static
val
unlabeled
:
Int
static
val
up
:
Int
static
val
useLogo
:
Int
static
val
username_edit_text
:
Int
static
val
username_edit_text_reg
:
Int
static
val
username_text_input
:
Int
static
val
username_text_input_reg
:
Int
static
val
view_offset_helper
:
Int
static
val
visible
:
Int
static
val
withText
:
Int
static
val
wrap
:
Int
static
val
wrap_content
:
Int
class
integer
Module Contents
integer
(
)
static
val
abc_config_activityDefaultDur
:
Int
static
val
abc_config_activityShortDur
:
Int
static
val
app_bar_elevation_anim_duration
:
Int
static
val
bottom_sheet_slide_duration
:
Int
static
val
cancel_button_image_alpha
:
Int
static
val
config_tooltipAnimTime
:
Int
static
val
design_snackbar_text_max_lines
:
Int
static
val
design_tab_indicator_anim_duration_ms
:
Int
static
val
hide_password_duration
:
Int
static
val
mtrl_btn_anim_delay_ms
:
Int
static
val
mtrl_btn_anim_duration_ms
:
Int
static
val
mtrl_chip_anim_duration
:
Int
static
val
mtrl_tab_indicator_anim_duration_ms
:
Int
static
val
show_password_duration
:
Int
static
val
status_bar_notification_info_maxnum
:
Int
class
interpolator
Module Contents
interpolator
(
)
static
val
mtrl_fast_out_linear_in
:
Int
static
val
mtrl_fast_out_slow_in
:
Int
static
val
mtrl_linear
:
Int
static
val
mtrl_linear_out_slow_in
:
Int
class
layout
Module Contents
layout
(
)
static
val
abc_action_bar_title_item
:
Int
static
val
abc_action_bar_up_container
:
Int
static
val
abc_action_menu_item_layout
:
Int
static
val
abc_action_menu_layout
:
Int
static
val
abc_action_mode_bar
:
Int
static
val
abc_action_mode_close_item_material
:
Int
static
val
abc_activity_chooser_view
:
Int
static
val
abc_activity_chooser_view_list_item
:
Int
static
val
abc_alert_dialog_button_bar_material
:
Int
static
val
abc_alert_dialog_material
:
Int
static
val
abc_alert_dialog_title_material
:
Int
static
val
abc_cascading_menu_item_layout
:
Int
static
val
abc_dialog_title_material
:
Int
static
val
abc_expanded_menu_layout
:
Int
static
val
abc_list_menu_item_checkbox
:
Int
static
val
abc_list_menu_item_icon
:
Int
static
val
abc_list_menu_item_layout
:
Int
static
val
abc_list_menu_item_radio
:
Int
static
val
abc_popup_menu_header_item_layout
:
Int
static
val
abc_popup_menu_item_layout
:
Int
static
val
abc_screen_content_include
:
Int
static
val
abc_screen_simple
:
Int
static
val
abc_screen_simple_overlay_action_mode
:
Int
static
val
abc_screen_toolbar
:
Int
static
val
abc_search_dropdown_item_icons_2line
:
Int
static
val
abc_search_view
:
Int
static
val
abc_select_dialog_material
:
Int
static
val
abc_tooltip
:
Int
static
val
account_fragment
:
Int
static
val
activity_main
:
Int
static
val
activity_pinboard_details
:
Int
static
val
activity_pinboards
:
Int
static
val
add_post_fragment
:
Int
static
val
design_bottom_navigation_item
:
Int
static
val
design_bottom_sheet_dialog
:
Int
static
val
design_layout_snackbar
:
Int
static
val
design_layout_snackbar_include
:
Int
static
val
design_layout_tab_icon
:
Int
static
val
design_layout_tab_text
:
Int
static
val
design_menu_item_action_area
:
Int
static
val
design_navigation_item
:
Int
static
val
design_navigation_item_header
:
Int
static
val
design_navigation_item_separator
:
Int
static
val
design_navigation_item_subheader
:
Int
static
val
design_navigation_menu
:
Int
static
val
design_navigation_menu_item
:
Int
static
val
design_text_input_password_icon
:
Int
static
val
geen_internet_fragment
:
Int
static
val
login_fragment
:
Int
static
val
mtrl_layout_snackbar
:
Int
static
val
mtrl_layout_snackbar_include
:
Int
static
val
notification_action
:
Int
static
val
notification_action_tombstone
:
Int
static
val
notification_media_action
:
Int
static
val
notification_media_cancel_action
:
Int
static
val
notification_template_big_media
:
Int
static
val
notification_template_big_media_custom
:
Int
static
val
notification_template_big_media_narrow
:
Int
static
val
notification_template_big_media_narrow_custom
:
Int
static
val
notification_template_custom_big
:
Int
static
val
notification_template_icon_group
:
Int
static
val
notification_template_lines_media
:
Int
static
val
notification_template_media
:
Int
static
val
notification_template_media_custom
:
Int
static
val
notification_template_part_chronometer
:
Int
static
val
notification_template_part_time
:
Int
static
val
pinboard_item
:
Int
static
val
pinboard_list_fragment
:
Int
static
val
post_item
:
Int
static
val
registreer_fragment
:
Int
static
val
select_dialog_item_material
:
Int
static
val
select_dialog_multichoice_material
:
Int
static
val
select_dialog_singlechoice_material
:
Int
static
val
support_simple_spinner_dropdown_item
:
Int
class
menu
Module Contents
menu
(
)
static
val
search_menu
:
Int
class
mipmap
Module Contents
mipmap
(
)
static
val
ic_launcher
:
Int
static
val
ic_launcher_foreground
:
Int
static
val
ic_launcher_round
:
Int
class
string
Module Contents
string
(
)
static
val
abc_action_bar_home_description
:
Int
static
val
abc_action_bar_up_description
:
Int
static
val
abc_action_menu_overflow_description
:
Int
static
val
abc_action_mode_done
:
Int
static
val
abc_activity_chooser_view_see_all
:
Int
static
val
abc_activitychooserview_choose_application
:
Int
static
val
abc_capital_off
:
Int
static
val
abc_capital_on
:
Int
static
val
abc_font_family_body_1_material
:
Int
static
val
abc_font_family_body_2_material
:
Int
static
val
abc_font_family_button_material
:
Int
static
val
abc_font_family_caption_material
:
Int
static
val
abc_font_family_display_1_material
:
Int
static
val
abc_font_family_display_2_material
:
Int
static
val
abc_font_family_display_3_material
:
Int
static
val
abc_font_family_display_4_material
:
Int
static
val
abc_font_family_headline_material
:
Int
static
val
abc_font_family_menu_material
:
Int
static
val
abc_font_family_subhead_material
:
Int
static
val
abc_font_family_title_material
:
Int
static
val
abc_menu_alt_shortcut_label
:
Int
static
val
abc_menu_ctrl_shortcut_label
:
Int
static
val
abc_menu_delete_shortcut_label
:
Int
static
val
abc_menu_enter_shortcut_label
:
Int
static
val
abc_menu_function_shortcut_label
:
Int
static
val
abc_menu_meta_shortcut_label
:
Int
static
val
abc_menu_shift_shortcut_label
:
Int
static
val
abc_menu_space_shortcut_label
:
Int
static
val
abc_menu_sym_shortcut_label
:
Int
static
val
abc_prepend_shortcut_label
:
Int
static
val
abc_search_hint
:
Int
static
val
abc_searchview_description_clear
:
Int
static
val
abc_searchview_description_query
:
Int
static
val
abc_searchview_description_search
:
Int
static
val
abc_searchview_description_submit
:
Int
static
val
abc_searchview_description_voice
:
Int
static
val
abc_shareactionprovider_share_with
:
Int
static
val
abc_shareactionprovider_share_with_application
:
Int
static
val
abc_toolbar_collapse_description
:
Int
static
val
add_post_title
:
Int
static
val
app_name
:
Int
static
val
appbar_scrolling_view_behavior
:
Int
static
val
back_button
:
Int
static
val
bottom_sheet_behavior
:
Int
static
val
character_counter_content_description
:
Int
static
val
character_counter_pattern
:
Int
static
val
error_confirm_password
:
Int
static
val
error_password
:
Int
static
val
error_post_field_empty
:
Int
static
val
error_useralreadyexists
:
Int
static
val
error_username
:
Int
static
val
error_wrong_user_or_password
:
Int
static
val
fab_transformation_scrim_behavior
:
Int
static
val
fab_transformation_sheet_behavior
:
Int
static
val
hide_bottom_view_on_scroll_behavior
:
Int
static
val
hint_confirm_password
:
Int
static
val
hint_password
:
Int
static
val
hint_post_body
:
Int
static
val
hint_post_title
:
Int
static
val
hint_search
:
Int
static
val
hint_username
:
Int
static
val
key_pinboard
:
Int
static
val
mtrl_chip_close_icon_content_description
:
Int
static
val
next_button
:
Int
static
val
no_internet_connection
:
Int
static
val
no_internet_connection_description
:
Int
static
val
no_internet_connection_solution
:
Int
static
val
password_toggle_content_description
:
Int
static
val
path_password_eye
:
Int
static
val
path_password_eye_mask_strike_through
:
Int
static
val
path_password_eye_mask_visible
:
Int
static
val
path_password_strike_through
:
Int
static
val
pinboard_card_amount_of_posts
:
Int
static
val
pinboard_details_title
:
Int
static
val
post_button
:
Int
static
val
register_button
:
Int
static
val
registration_background_description
:
Int
static
val
search_menu_title
:
Int
static
val
something_went_wrong
:
Int
static
val
sp_token_key
:
Int
static
val
sp_token_likedPosts
:
Int
static
val
sp_token_password
:
Int
static
val
sp_token_username
:
Int
static
val
status_bar_notification_info_overflow
:
Int
static
val
you_are_offline
:
Int
class
style
Module Contents
style
(
)
static
val
AlertDialog_AppCompat
:
Int
static
val
AlertDialog_AppCompat_Light
:
Int
static
val
Animation_AppCompat_Dialog
:
Int
static
val
Animation_AppCompat_DropDownUp
:
Int
static
val
Animation_AppCompat_Tooltip
:
Int
static
val
Animation_Design_BottomSheetDialog
:
Int
static
val
Base_AlertDialog_AppCompat
:
Int
static
val
Base_AlertDialog_AppCompat_Light
:
Int
static
val
Base_Animation_AppCompat_Dialog
:
Int
static
val
Base_Animation_AppCompat_DropDownUp
:
Int
static
val
Base_Animation_AppCompat_Tooltip
:
Int
static
val
Base_CardView
:
Int
static
val
Base_DialogWindowTitleBackground_AppCompat
:
Int
static
val
Base_DialogWindowTitle_AppCompat
:
Int
static
val
Base_TextAppearance_AppCompat
:
Int
static
val
Base_TextAppearance_AppCompat_Body1
:
Int
static
val
Base_TextAppearance_AppCompat_Body2
:
Int
static
val
Base_TextAppearance_AppCompat_Button
:
Int
static
val
Base_TextAppearance_AppCompat_Caption
:
Int
static
val
Base_TextAppearance_AppCompat_Display1
:
Int
static
val
Base_TextAppearance_AppCompat_Display2
:
Int
static
val
Base_TextAppearance_AppCompat_Display3
:
Int
static
val
Base_TextAppearance_AppCompat_Display4
:
Int
static
val
Base_TextAppearance_AppCompat_Headline
:
Int
static
val
Base_TextAppearance_AppCompat_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Large
:
Int
static
val
Base_TextAppearance_AppCompat_Large_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
:
Int
static
val
Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
:
Int
static
val
Base_TextAppearance_AppCompat_Medium
:
Int
static
val
Base_TextAppearance_AppCompat_Medium_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Menu
:
Int
static
val
Base_TextAppearance_AppCompat_SearchResult
:
Int
static
val
Base_TextAppearance_AppCompat_SearchResult_Subtitle
:
Int
static
val
Base_TextAppearance_AppCompat_SearchResult_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Small
:
Int
static
val
Base_TextAppearance_AppCompat_Small_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Subhead
:
Int
static
val
Base_TextAppearance_AppCompat_Subhead_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Title_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Tooltip
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Menu
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_ActionMode_Title
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button_Colored
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Button_Inverse
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_DropDownItem
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_PopupMenu_Header
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_PopupMenu_Large
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_PopupMenu_Small
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_Switch
:
Int
static
val
Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem
:
Int
static
val
Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item
:
Int
static
val
Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle
:
Int
static
val
Base_TextAppearance_Widget_AppCompat_Toolbar_Title
:
Int
static
val
Base_ThemeOverlay_AppCompat
:
Int
static
val
Base_ThemeOverlay_AppCompat_ActionBar
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dark
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dark_ActionBar
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dialog
:
Int
static
val
Base_ThemeOverlay_AppCompat_Dialog_Alert
:
Int
static
val
Base_ThemeOverlay_AppCompat_Light
:
Int
static
val
Base_ThemeOverlay_MaterialComponents_Dialog
:
Int
static
val
Base_ThemeOverlay_MaterialComponents_Dialog_Alert
:
Int
static
val
Base_Theme_AppCompat
:
Int
static
val
Base_Theme_AppCompat_CompactMenu
:
Int
static
val
Base_Theme_AppCompat_Dialog
:
Int
static
val
Base_Theme_AppCompat_DialogWhenLarge
:
Int
static
val
Base_Theme_AppCompat_Dialog_Alert
:
Int
static
val
Base_Theme_AppCompat_Dialog_FixedSize
:
Int
static
val
Base_Theme_AppCompat_Dialog_MinWidth
:
Int
static
val
Base_Theme_AppCompat_Light
:
Int
static
val
Base_Theme_AppCompat_Light_DarkActionBar
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog
:
Int
static
val
Base_Theme_AppCompat_Light_DialogWhenLarge
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog_Alert
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog_FixedSize
:
Int
static
val
Base_Theme_AppCompat_Light_Dialog_MinWidth
:
Int
static
val
Base_Theme_MaterialComponents
:
Int
static
val
Base_Theme_MaterialComponents_Bridge
:
Int
static
val
Base_Theme_MaterialComponents_CompactMenu
:
Int
static
val
Base_Theme_MaterialComponents_Dialog
:
Int
static
val
Base_Theme_MaterialComponents_DialogWhenLarge
:
Int
static
val
Base_Theme_MaterialComponents_Dialog_Alert
:
Int
static
val
Base_Theme_MaterialComponents_Dialog_FixedSize
:
Int
static
val
Base_Theme_MaterialComponents_Dialog_MinWidth
:
Int
static
val
Base_Theme_MaterialComponents_Light
:
Int
static
val
Base_Theme_MaterialComponents_Light_Bridge
:
Int
static
val
Base_Theme_MaterialComponents_Light_DarkActionBar
:
Int
static
val
Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge
:
Int
static
val
Base_Theme_MaterialComponents_Light_Dialog
:
Int
static
val
Base_Theme_MaterialComponents_Light_DialogWhenLarge
:
Int
static
val
Base_Theme_MaterialComponents_Light_Dialog_Alert
:
Int
static
val
Base_Theme_MaterialComponents_Light_Dialog_FixedSize
:
Int
static
val
Base_Theme_MaterialComponents_Light_Dialog_MinWidth
:
Int
static
val
Base_V14_ThemeOverlay_MaterialComponents_Dialog
:
Int
static
val
Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert
:
Int
static
val
Base_V14_Theme_MaterialComponents
:
Int
static
val
Base_V14_Theme_MaterialComponents_Bridge
:
Int
static
val
Base_V14_Theme_MaterialComponents_Dialog
:
Int
static
val
Base_V14_Theme_MaterialComponents_Light
:
Int
static
val
Base_V14_Theme_MaterialComponents_Light_Bridge
:
Int
static
val
Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge
:
Int
static
val
Base_V14_Theme_MaterialComponents_Light_Dialog
:
Int
static
val
Base_V21_ThemeOverlay_AppCompat_Dialog
:
Int
static
val
Base_V21_Theme_AppCompat
:
Int
static
val
Base_V21_Theme_AppCompat_Dialog
:
Int
static
val
Base_V21_Theme_AppCompat_Light
:
Int
static
val
Base_V21_Theme_AppCompat_Light_Dialog
:
Int
static
val
Base_V22_Theme_AppCompat
:
Int
static
val
Base_V22_Theme_AppCompat_Light
:
Int
static
val
Base_V23_Theme_AppCompat
:
Int
static
val
Base_V23_Theme_AppCompat_Light
:
Int
static
val
Base_V26_Theme_AppCompat
:
Int
static
val
Base_V26_Theme_AppCompat_Light
:
Int
static
val
Base_V26_Widget_AppCompat_Toolbar
:
Int
static
val
Base_V28_Theme_AppCompat
:
Int
static
val
Base_V28_Theme_AppCompat_Light
:
Int
static
val
Base_V7_ThemeOverlay_AppCompat_Dialog
:
Int
static
val
Base_V7_Theme_AppCompat
:
Int
static
val
Base_V7_Theme_AppCompat_Dialog
:
Int
static
val
Base_V7_Theme_AppCompat_Light
:
Int
static
val
Base_V7_Theme_AppCompat_Light_Dialog
:
Int
static
val
Base_V7_Widget_AppCompat_AutoCompleteTextView
:
Int
static
val
Base_V7_Widget_AppCompat_EditText
:
Int
static
val
Base_V7_Widget_AppCompat_Toolbar
:
Int
static
val
Base_Widget_AppCompat_ActionBar
:
Int
static
val
Base_Widget_AppCompat_ActionBar_Solid
:
Int
static
val
Base_Widget_AppCompat_ActionBar_TabBar
:
Int
static
val
Base_Widget_AppCompat_ActionBar_TabText
:
Int
static
val
Base_Widget_AppCompat_ActionBar_TabView
:
Int
static
val
Base_Widget_AppCompat_ActionButton
:
Int
static
val
Base_Widget_AppCompat_ActionButton_CloseMode
:
Int
static
val
Base_Widget_AppCompat_ActionButton_Overflow
:
Int
static
val
Base_Widget_AppCompat_ActionMode
:
Int
static
val
Base_Widget_AppCompat_ActivityChooserView
:
Int
static
val
Base_Widget_AppCompat_AutoCompleteTextView
:
Int
static
val
Base_Widget_AppCompat_Button
:
Int
static
val
Base_Widget_AppCompat_ButtonBar
:
Int
static
val
Base_Widget_AppCompat_ButtonBar_AlertDialog
:
Int
static
val
Base_Widget_AppCompat_Button_Borderless
:
Int
static
val
Base_Widget_AppCompat_Button_Borderless_Colored
:
Int
static
val
Base_Widget_AppCompat_Button_ButtonBar_AlertDialog
:
Int
static
val
Base_Widget_AppCompat_Button_Colored
:
Int
static
val
Base_Widget_AppCompat_Button_Small
:
Int
static
val
Base_Widget_AppCompat_CompoundButton_CheckBox
:
Int
static
val
Base_Widget_AppCompat_CompoundButton_RadioButton
:
Int
static
val
Base_Widget_AppCompat_CompoundButton_Switch
:
Int
static
val
Base_Widget_AppCompat_DrawerArrowToggle
:
Int
static
val
Base_Widget_AppCompat_DrawerArrowToggle_Common
:
Int
static
val
Base_Widget_AppCompat_DropDownItem_Spinner
:
Int
static
val
Base_Widget_AppCompat_EditText
:
Int
static
val
Base_Widget_AppCompat_ImageButton
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_Solid
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabBar
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabText
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse
:
Int
static
val
Base_Widget_AppCompat_Light_ActionBar_TabView
:
Int
static
val
Base_Widget_AppCompat_Light_PopupMenu
:
Int
static
val
Base_Widget_AppCompat_Light_PopupMenu_Overflow
:
Int
static
val
Base_Widget_AppCompat_ListMenuView
:
Int
static
val
Base_Widget_AppCompat_ListPopupWindow
:
Int
static
val
Base_Widget_AppCompat_ListView
:
Int
static
val
Base_Widget_AppCompat_ListView_DropDown
:
Int
static
val
Base_Widget_AppCompat_ListView_Menu
:
Int
static
val
Base_Widget_AppCompat_PopupMenu
:
Int
static
val
Base_Widget_AppCompat_PopupMenu_Overflow
:
Int
static
val
Base_Widget_AppCompat_PopupWindow
:
Int
static
val
Base_Widget_AppCompat_ProgressBar
:
Int
static
val
Base_Widget_AppCompat_ProgressBar_Horizontal
:
Int
static
val
Base_Widget_AppCompat_RatingBar
:
Int
static
val
Base_Widget_AppCompat_RatingBar_Indicator
:
Int
static
val
Base_Widget_AppCompat_RatingBar_Small
:
Int
static
val
Base_Widget_AppCompat_SearchView
:
Int
static
val
Base_Widget_AppCompat_SearchView_ActionBar
:
Int
static
val
Base_Widget_AppCompat_SeekBar
:
Int
static
val
Base_Widget_AppCompat_SeekBar_Discrete
:
Int
static
val
Base_Widget_AppCompat_Spinner
:
Int
static
val
Base_Widget_AppCompat_Spinner_Underlined
:
Int
static
val
Base_Widget_AppCompat_TextView_SpinnerItem
:
Int
static
val
Base_Widget_AppCompat_Toolbar
:
Int
static
val
Base_Widget_AppCompat_Toolbar_Button_Navigation
:
Int
static
val
Base_Widget_Design_TabLayout
:
Int
static
val
Base_Widget_MaterialComponents_Chip
:
Int
static
val
Base_Widget_MaterialComponents_TextInputEditText
:
Int
static
val
Base_Widget_MaterialComponents_TextInputLayout
:
Int
static
val
CardView
:
Int
static
val
CardView_Dark
:
Int
static
val
CardView_Light
:
Int
static
val
Platform_AppCompat
:
Int
static
val
Platform_AppCompat_Light
:
Int
static
val
Platform_MaterialComponents
:
Int
static
val
Platform_MaterialComponents_Dialog
:
Int
static
val
Platform_MaterialComponents_Light
:
Int
static
val
Platform_MaterialComponents_Light_Dialog
:
Int
static
val
Platform_ThemeOverlay_AppCompat
:
Int
static
val
Platform_ThemeOverlay_AppCompat_Dark
:
Int
static
val
Platform_ThemeOverlay_AppCompat_Light
:
Int
static
val
Platform_V21_AppCompat
:
Int
static
val
Platform_V21_AppCompat_Light
:
Int
static
val
Platform_V25_AppCompat
:
Int
static
val
Platform_V25_AppCompat_Light
:
Int
static
val
Platform_Widget_AppCompat_Spinner
:
Int
static
val
RtlOverlay_DialogWindowTitle_AppCompat
:
Int
static
val
RtlOverlay_Widget_AppCompat_ActionBar_TitleItem
:
Int
static
val
RtlOverlay_Widget_AppCompat_DialogTitle_Icon
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_Text
:
Int
static
val
RtlOverlay_Widget_AppCompat_PopupMenuItem_Title
:
Int
static
val
RtlOverlay_Widget_AppCompat_SearchView_MagIcon
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Query
:
Int
static
val
RtlOverlay_Widget_AppCompat_Search_DropDown_Text
:
Int
static
val
RtlUnderlay_Widget_AppCompat_ActionButton
:
Int
static
val
RtlUnderlay_Widget_AppCompat_ActionButton_Overflow
:
Int
static
val
TextAppearance_AppCompat
:
Int
static
val
TextAppearance_AppCompat_Body1
:
Int
static
val
TextAppearance_AppCompat_Body2
:
Int
static
val
TextAppearance_AppCompat_Button
:
Int
static
val
TextAppearance_AppCompat_Caption
:
Int
static
val
TextAppearance_AppCompat_Display1
:
Int
static
val
TextAppearance_AppCompat_Display2
:
Int
static
val
TextAppearance_AppCompat_Display3
:
Int
static
val
TextAppearance_AppCompat_Display4
:
Int
static
val
TextAppearance_AppCompat_Headline
:
Int
static
val
TextAppearance_AppCompat_Inverse
:
Int
static
val
TextAppearance_AppCompat_Large
:
Int
static
val
TextAppearance_AppCompat_Large_Inverse
:
Int
static
val
TextAppearance_AppCompat_Light_SearchResult_Subtitle
:
Int
static
val
TextAppearance_AppCompat_Light_SearchResult_Title
:
Int
static
val
TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
:
Int
static
val
TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
:
Int
static
val
TextAppearance_AppCompat_Medium
:
Int
static
val
TextAppearance_AppCompat_Medium_Inverse
:
Int
static
val
TextAppearance_AppCompat_Menu
:
Int
static
val
TextAppearance_AppCompat_SearchResult_Subtitle
:
Int
static
val
TextAppearance_AppCompat_SearchResult_Title
:
Int
static
val
TextAppearance_AppCompat_Small
:
Int
static
val
TextAppearance_AppCompat_Small_Inverse
:
Int
static
val
TextAppearance_AppCompat_Subhead
:
Int
static
val
TextAppearance_AppCompat_Subhead_Inverse
:
Int
static
val
TextAppearance_AppCompat_Title
:
Int
static
val
TextAppearance_AppCompat_Title_Inverse
:
Int
static
val
TextAppearance_AppCompat_Tooltip
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Menu
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Subtitle
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Title
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Subtitle
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Title
:
Int
static
val
TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_Button
:
Int
static
val
TextAppearance_AppCompat_Widget_Button_Borderless_Colored
:
Int
static
val
TextAppearance_AppCompat_Widget_Button_Colored
:
Int
static
val
TextAppearance_AppCompat_Widget_Button_Inverse
:
Int
static
val
TextAppearance_AppCompat_Widget_DropDownItem
:
Int
static
val
TextAppearance_AppCompat_Widget_PopupMenu_Header
:
Int
static
val
TextAppearance_AppCompat_Widget_PopupMenu_Large
:
Int
static
val
TextAppearance_AppCompat_Widget_PopupMenu_Small
:
Int
static
val
TextAppearance_AppCompat_Widget_Switch
:
Int
static
val
TextAppearance_AppCompat_Widget_TextView_SpinnerItem
:
Int
static
val
TextAppearance_CityPinboard_Title
:
Int
static
val
TextAppearance_CityPinboard_Toolbar
:
Int
static
val
TextAppearance_Compat_Notification
:
Int
static
val
TextAppearance_Compat_Notification_Info
:
Int
static
val
TextAppearance_Compat_Notification_Info_Media
:
Int
static
val
TextAppearance_Compat_Notification_Line2
:
Int
static
val
TextAppearance_Compat_Notification_Line2_Media
:
Int
static
val
TextAppearance_Compat_Notification_Media
:
Int
static
val
TextAppearance_Compat_Notification_Time
:
Int
static
val
TextAppearance_Compat_Notification_Time_Media
:
Int
static
val
TextAppearance_Compat_Notification_Title
:
Int
static
val
TextAppearance_Compat_Notification_Title_Media
:
Int
static
val
TextAppearance_Design_CollapsingToolbar_Expanded
:
Int
static
val
TextAppearance_Design_Counter
:
Int
static
val
TextAppearance_Design_Counter_Overflow
:
Int
static
val
TextAppearance_Design_Error
:
Int
static
val
TextAppearance_Design_HelperText
:
Int
static
val
TextAppearance_Design_Hint
:
Int
static
val
TextAppearance_Design_Snackbar_Message
:
Int
static
val
TextAppearance_Design_Tab
:
Int
static
val
TextAppearance_MaterialComponents_Body1
:
Int
static
val
TextAppearance_MaterialComponents_Body2
:
Int
static
val
TextAppearance_MaterialComponents_Button
:
Int
static
val
TextAppearance_MaterialComponents_Caption
:
Int
static
val
TextAppearance_MaterialComponents_Chip
:
Int
static
val
TextAppearance_MaterialComponents_Headline1
:
Int
static
val
TextAppearance_MaterialComponents_Headline2
:
Int
static
val
TextAppearance_MaterialComponents_Headline3
:
Int
static
val
TextAppearance_MaterialComponents_Headline4
:
Int
static
val
TextAppearance_MaterialComponents_Headline5
:
Int
static
val
TextAppearance_MaterialComponents_Headline6
:
Int
static
val
TextAppearance_MaterialComponents_Overline
:
Int
static
val
TextAppearance_MaterialComponents_Subtitle1
:
Int
static
val
TextAppearance_MaterialComponents_Subtitle2
:
Int
static
val
TextAppearance_MaterialComponents_Tab
:
Int
static
val
TextAppearance_Widget_AppCompat_ExpandedMenu_Item
:
Int
static
val
TextAppearance_Widget_AppCompat_Toolbar_Subtitle
:
Int
static
val
TextAppearance_Widget_AppCompat_Toolbar_Title
:
Int
static
val
ThemeOverlay_AppCompat
:
Int
static
val
ThemeOverlay_AppCompat_ActionBar
:
Int
static
val
ThemeOverlay_AppCompat_Dark
:
Int
static
val
ThemeOverlay_AppCompat_Dark_ActionBar
:
Int
static
val
ThemeOverlay_AppCompat_Dialog
:
Int
static
val
ThemeOverlay_AppCompat_Dialog_Alert
:
Int
static
val
ThemeOverlay_AppCompat_Light
:
Int
static
val
ThemeOverlay_MaterialComponents
:
Int
static
val
ThemeOverlay_MaterialComponents_ActionBar
:
Int
static
val
ThemeOverlay_MaterialComponents_Dark
:
Int
static
val
ThemeOverlay_MaterialComponents_Dark_ActionBar
:
Int
static
val
ThemeOverlay_MaterialComponents_Dialog
:
Int
static
val
ThemeOverlay_MaterialComponents_Dialog_Alert
:
Int
static
val
ThemeOverlay_MaterialComponents_Light
:
Int
static
val
ThemeOverlay_MaterialComponents_TextInputEditText
:
Int
static
val
ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox
:
Int
static
val
ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense
:
Int
static
val
ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox
:
Int
static
val
ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense
:
Int
static
val
Theme_AppCompat
:
Int
static
val
Theme_AppCompat_CompactMenu
:
Int
static
val
Theme_AppCompat_DayNight
:
Int
static
val
Theme_AppCompat_DayNight_DarkActionBar
:
Int
static
val
Theme_AppCompat_DayNight_Dialog
:
Int
static
val
Theme_AppCompat_DayNight_DialogWhenLarge
:
Int
static
val
Theme_AppCompat_DayNight_Dialog_Alert
:
Int
static
val
Theme_AppCompat_DayNight_Dialog_MinWidth
:
Int
static
val
Theme_AppCompat_DayNight_NoActionBar
:
Int
static
val
Theme_AppCompat_Dialog
:
Int
static
val
Theme_AppCompat_DialogWhenLarge
:
Int
static
val
Theme_AppCompat_Dialog_Alert
:
Int
static
val
Theme_AppCompat_Dialog_MinWidth
:
Int
static
val
Theme_AppCompat_Light
:
Int
static
val
Theme_AppCompat_Light_DarkActionBar
:
Int
static
val
Theme_AppCompat_Light_Dialog
:
Int
static
val
Theme_AppCompat_Light_DialogWhenLarge
:
Int
static
val
Theme_AppCompat_Light_Dialog_Alert
:
Int
static
val
Theme_AppCompat_Light_Dialog_MinWidth
:
Int
static
val
Theme_AppCompat_Light_NoActionBar
:
Int
static
val
Theme_AppCompat_NoActionBar
:
Int
static
val
Theme_CityPinboard
:
Int
static
val
Theme_CityPinboard_NoActionBar
:
Int
static
val
Theme_Design
:
Int
static
val
Theme_Design_BottomSheetDialog
:
Int
static
val
Theme_Design_Light
:
Int
static
val
Theme_Design_Light_BottomSheetDialog
:
Int
static
val
Theme_Design_Light_NoActionBar
:
Int
static
val
Theme_Design_NoActionBar
:
Int
static
val
Theme_MaterialComponents
:
Int
static
val
Theme_MaterialComponents_BottomSheetDialog
:
Int
static
val
Theme_MaterialComponents_Bridge
:
Int
static
val
Theme_MaterialComponents_CompactMenu
:
Int
static
val
Theme_MaterialComponents_Dialog
:
Int
static
val
Theme_MaterialComponents_DialogWhenLarge
:
Int
static
val
Theme_MaterialComponents_Dialog_Alert
:
Int
static
val
Theme_MaterialComponents_Dialog_MinWidth
:
Int
static
val
Theme_MaterialComponents_Light
:
Int
static
val
Theme_MaterialComponents_Light_BottomSheetDialog
:
Int
static
val
Theme_MaterialComponents_Light_Bridge
:
Int
static
val
Theme_MaterialComponents_Light_DarkActionBar
:
Int
static
val
Theme_MaterialComponents_Light_DarkActionBar_Bridge
:
Int
static
val
Theme_MaterialComponents_Light_Dialog
:
Int
static
val
Theme_MaterialComponents_Light_DialogWhenLarge
:
Int
static
val
Theme_MaterialComponents_Light_Dialog_Alert
:
Int
static
val
Theme_MaterialComponents_Light_Dialog_MinWidth
:
Int
static
val
Theme_MaterialComponents_Light_NoActionBar
:
Int
static
val
Theme_MaterialComponents_Light_NoActionBar_Bridge
:
Int
static
val
Theme_MaterialComponents_NoActionBar
:
Int
static
val
Theme_MaterialComponents_NoActionBar_Bridge
:
Int
static
val
Theme_Widget_CityPinboard_Toolbar
:
Int
static
val
Widget_AppCompat_ActionBar
:
Int
static
val
Widget_AppCompat_ActionBar_Solid
:
Int
static
val
Widget_AppCompat_ActionBar_TabBar
:
Int
static
val
Widget_AppCompat_ActionBar_TabText
:
Int
static
val
Widget_AppCompat_ActionBar_TabView
:
Int
static
val
Widget_AppCompat_ActionButton
:
Int
static
val
Widget_AppCompat_ActionButton_CloseMode
:
Int
static
val
Widget_AppCompat_ActionButton_Overflow
:
Int
static
val
Widget_AppCompat_ActionMode
:
Int
static
val
Widget_AppCompat_ActivityChooserView
:
Int
static
val
Widget_AppCompat_AutoCompleteTextView
:
Int
static
val
Widget_AppCompat_Button
:
Int
static
val
Widget_AppCompat_ButtonBar
:
Int
static
val
Widget_AppCompat_ButtonBar_AlertDialog
:
Int
static
val
Widget_AppCompat_Button_Borderless
:
Int
static
val
Widget_AppCompat_Button_Borderless_Colored
:
Int
static
val
Widget_AppCompat_Button_ButtonBar_AlertDialog
:
Int
static
val
Widget_AppCompat_Button_Colored
:
Int
static
val
Widget_AppCompat_Button_Small
:
Int
static
val
Widget_AppCompat_CompoundButton_CheckBox
:
Int
static
val
Widget_AppCompat_CompoundButton_RadioButton
:
Int
static
val
Widget_AppCompat_CompoundButton_Switch
:
Int
static
val
Widget_AppCompat_DrawerArrowToggle
:
Int
static
val
Widget_AppCompat_DropDownItem_Spinner
:
Int
static
val
Widget_AppCompat_EditText
:
Int
static
val
Widget_AppCompat_ImageButton
:
Int
static
val
Widget_AppCompat_Light_ActionBar
:
Int
static
val
Widget_AppCompat_Light_ActionBar_Solid
:
Int
static
val
Widget_AppCompat_Light_ActionBar_Solid_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabBar
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabBar_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabText
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabText_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabView
:
Int
static
val
Widget_AppCompat_Light_ActionBar_TabView_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActionButton
:
Int
static
val
Widget_AppCompat_Light_ActionButton_CloseMode
:
Int
static
val
Widget_AppCompat_Light_ActionButton_Overflow
:
Int
static
val
Widget_AppCompat_Light_ActionMode_Inverse
:
Int
static
val
Widget_AppCompat_Light_ActivityChooserView
:
Int
static
val
Widget_AppCompat_Light_AutoCompleteTextView
:
Int
static
val
Widget_AppCompat_Light_DropDownItem_Spinner
:
Int
static
val
Widget_AppCompat_Light_ListPopupWindow
:
Int
static
val
Widget_AppCompat_Light_ListView_DropDown
:
Int
static
val
Widget_AppCompat_Light_PopupMenu
:
Int
static
val
Widget_AppCompat_Light_PopupMenu_Overflow
:
Int
static
val
Widget_AppCompat_Light_SearchView
:
Int
static
val
Widget_AppCompat_Light_Spinner_DropDown_ActionBar
:
Int
static
val
Widget_AppCompat_ListMenuView
:
Int
static
val
Widget_AppCompat_ListPopupWindow
:
Int
static
val
Widget_AppCompat_ListView
:
Int
static
val
Widget_AppCompat_ListView_DropDown
:
Int
static
val
Widget_AppCompat_ListView_Menu
:
Int
static
val
Widget_AppCompat_PopupMenu
:
Int
static
val
Widget_AppCompat_PopupMenu_Overflow
:
Int
static
val
Widget_AppCompat_PopupWindow
:
Int
static
val
Widget_AppCompat_ProgressBar
:
Int
static
val
Widget_AppCompat_ProgressBar_Horizontal
:
Int
static
val
Widget_AppCompat_RatingBar
:
Int
static
val
Widget_AppCompat_RatingBar_Indicator
:
Int
static
val
Widget_AppCompat_RatingBar_Small
:
Int
static
val
Widget_AppCompat_SearchView
:
Int
static
val
Widget_AppCompat_SearchView_ActionBar
:
Int
static
val
Widget_AppCompat_SeekBar
:
Int
static
val
Widget_AppCompat_SeekBar_Discrete
:
Int
static
val
Widget_AppCompat_Spinner
:
Int
static
val
Widget_AppCompat_Spinner_DropDown
:
Int
static
val
Widget_AppCompat_Spinner_DropDown_ActionBar
:
Int
static
val
Widget_AppCompat_Spinner_Underlined
:
Int
static
val
Widget_AppCompat_TextView_SpinnerItem
:
Int
static
val
Widget_AppCompat_Toolbar
:
Int
static
val
Widget_AppCompat_Toolbar_Button_Navigation
:
Int
static
val
Widget_Compat_NotificationActionContainer
:
Int
static
val
Widget_Compat_NotificationActionText
:
Int
static
val
Widget_Design_AppBarLayout
:
Int
static
val
Widget_Design_BottomNavigationView
:
Int
static
val
Widget_Design_BottomSheet_Modal
:
Int
static
val
Widget_Design_CollapsingToolbar
:
Int
static
val
Widget_Design_FloatingActionButton
:
Int
static
val
Widget_Design_NavigationView
:
Int
static
val
Widget_Design_ScrimInsetsFrameLayout
:
Int
static
val
Widget_Design_Snackbar
:
Int
static
val
Widget_Design_TabLayout
:
Int
static
val
Widget_Design_TextInputLayout
:
Int
static
val
Widget_MaterialComponents_BottomAppBar
:
Int
static
val
Widget_MaterialComponents_BottomAppBar_Colored
:
Int
static
val
Widget_MaterialComponents_BottomNavigationView
:
Int
static
val
Widget_MaterialComponents_BottomNavigationView_Colored
:
Int
static
val
Widget_MaterialComponents_BottomSheet_Modal
:
Int
static
val
Widget_MaterialComponents_Button
:
Int
static
val
Widget_MaterialComponents_Button_Icon
:
Int
static
val
Widget_MaterialComponents_Button_OutlinedButton
:
Int
static
val
Widget_MaterialComponents_Button_OutlinedButton_Icon
:
Int
static
val
Widget_MaterialComponents_Button_TextButton
:
Int
static
val
Widget_MaterialComponents_Button_TextButton_Dialog
:
Int
static
val
Widget_MaterialComponents_Button_TextButton_Dialog_Icon
:
Int
static
val
Widget_MaterialComponents_Button_TextButton_Icon
:
Int
static
val
Widget_MaterialComponents_Button_UnelevatedButton
:
Int
static
val
Widget_MaterialComponents_Button_UnelevatedButton_Icon
:
Int
static
val
Widget_MaterialComponents_CardView
:
Int
static
val
Widget_MaterialComponents_ChipGroup
:
Int
static
val
Widget_MaterialComponents_Chip_Action
:
Int
static
val
Widget_MaterialComponents_Chip_Choice
:
Int
static
val
Widget_MaterialComponents_Chip_Entry
:
Int
static
val
Widget_MaterialComponents_Chip_Filter
:
Int
static
val
Widget_MaterialComponents_FloatingActionButton
:
Int
static
val
Widget_MaterialComponents_NavigationView
:
Int
static
val
Widget_MaterialComponents_Snackbar
:
Int
static
val
Widget_MaterialComponents_Snackbar_FullWidth
:
Int
static
val
Widget_MaterialComponents_TabLayout
:
Int
static
val
Widget_MaterialComponents_TabLayout_Colored
:
Int
static
val
Widget_MaterialComponents_TextInputEditText_FilledBox
:
Int
static
val
Widget_MaterialComponents_TextInputEditText_FilledBox_Dense
:
Int
static
val
Widget_MaterialComponents_TextInputEditText_OutlinedBox
:
Int
static
val
Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense
:
Int
static
val
Widget_MaterialComponents_TextInputLayout_FilledBox
:
Int
static
val
Widget_MaterialComponents_TextInputLayout_FilledBox_Dense
:
Int
static
val
Widget_MaterialComponents_TextInputLayout_OutlinedBox
:
Int
static
val
Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense
:
Int
static
val
Widget_MaterialComponents_Toolbar
:
Int
static
val
Widget_Shrine_Button_TextButton
:
Int
static
val
Widget_Support_CoordinatorLayout
:
Int
class
styleable
Module Contents
styleable
(
)
static
val
ActionBar
:
IntArray
static
val
ActionBarLayout
:
IntArray
static
val
ActionBarLayout_android_layout_gravity
:
Int
static
val
ActionBar_background
:
Int
static
val
ActionBar_backgroundSplit
:
Int
static
val
ActionBar_backgroundStacked
:
Int
static
val
ActionBar_contentInsetEnd
:
Int
static
val
ActionBar_contentInsetEndWithActions
:
Int
static
val
ActionBar_contentInsetLeft
:
Int
static
val
ActionBar_contentInsetRight
:
Int
static
val
ActionBar_contentInsetStart
:
Int
static
val
ActionBar_contentInsetStartWithNavigation
:
Int
static
val
ActionBar_customNavigationLayout
:
Int
static
val
ActionBar_displayOptions
:
Int
static
val
ActionBar_divider
:
Int
static
val
ActionBar_elevation
:
Int
static
val
ActionBar_height
:
Int
static
val
ActionBar_hideOnContentScroll
:
Int
static
val
ActionBar_homeAsUpIndicator
:
Int
static
val
ActionBar_homeLayout
:
Int
static
val
ActionBar_icon
:
Int
static
val
ActionBar_indeterminateProgressStyle
:
Int
static
val
ActionBar_itemPadding
:
Int
static
val
ActionBar_logo
:
Int
static
val
ActionBar_navigationMode
:
Int
static
val
ActionBar_popupTheme
:
Int
static
val
ActionBar_progressBarPadding
:
Int
static
val
ActionBar_progressBarStyle
:
Int
static
val
ActionBar_subtitle
:
Int
static
val
ActionBar_subtitleTextStyle
:
Int
static
val
ActionBar_title
:
Int
static
val
ActionBar_titleTextStyle
:
Int
static
val
ActionMenuItemView
:
IntArray
static
val
ActionMenuItemView_android_minWidth
:
Int
static
val
ActionMenuView
:
IntArray
static
val
ActionMode
:
IntArray
static
val
ActionMode_background
:
Int
static
val
ActionMode_backgroundSplit
:
Int
static
val
ActionMode_closeItemLayout
:
Int
static
val
ActionMode_height
:
Int
static
val
ActionMode_subtitleTextStyle
:
Int
static
val
ActionMode_titleTextStyle
:
Int
static
val
ActivityChooserView
:
IntArray
static
val
ActivityChooserView_expandActivityOverflowButtonDrawable
:
Int
static
val
ActivityChooserView_initialActivityCount
:
Int
static
val
AlertDialog
:
IntArray
static
val
AlertDialog_android_layout
:
Int
static
val
AlertDialog_buttonIconDimen
:
Int
static
val
AlertDialog_buttonPanelSideLayout
:
Int
static
val
AlertDialog_listItemLayout
:
Int
static
val
AlertDialog_listLayout
:
Int
static
val
AlertDialog_multiChoiceItemLayout
:
Int
static
val
AlertDialog_showTitle
:
Int
static
val
AlertDialog_singleChoiceItemLayout
:
Int
static
val
AnimatedStateListDrawableCompat
:
IntArray
static
val
AnimatedStateListDrawableCompat_android_constantSize
:
Int
static
val
AnimatedStateListDrawableCompat_android_dither
:
Int
static
val
AnimatedStateListDrawableCompat_android_enterFadeDuration
:
Int
static
val
AnimatedStateListDrawableCompat_android_exitFadeDuration
:
Int
static
val
AnimatedStateListDrawableCompat_android_variablePadding
:
Int
static
val
AnimatedStateListDrawableCompat_android_visible
:
Int
static
val
AnimatedStateListDrawableItem
:
IntArray
static
val
AnimatedStateListDrawableItem_android_drawable
:
Int
static
val
AnimatedStateListDrawableItem_android_id
:
Int
static
val
AnimatedStateListDrawableTransition
:
IntArray
static
val
AnimatedStateListDrawableTransition_android_drawable
:
Int
static
val
AnimatedStateListDrawableTransition_android_fromId
:
Int
static
val
AnimatedStateListDrawableTransition_android_reversible
:
Int
static
val
AnimatedStateListDrawableTransition_android_toId
:
Int
static
val
AppBarLayout
:
IntArray
static
val
AppBarLayoutStates
:
IntArray
static
val
AppBarLayoutStates_state_collapsed
:
Int
static
val
AppBarLayoutStates_state_collapsible
:
Int
static
val
AppBarLayoutStates_state_liftable
:
Int
static
val
AppBarLayoutStates_state_lifted
:
Int
static
val
AppBarLayout_Layout
:
IntArray
static
val
AppBarLayout_Layout_layout_scrollFlags
:
Int
static
val
AppBarLayout_Layout_layout_scrollInterpolator
:
Int
static
val
AppBarLayout_android_background
:
Int
static
val
AppBarLayout_android_keyboardNavigationCluster
:
Int
static
val
AppBarLayout_android_touchscreenBlocksFocus
:
Int
static
val
AppBarLayout_elevation
:
Int
static
val
AppBarLayout_expanded
:
Int
static
val
AppBarLayout_liftOnScroll
:
Int
static
val
AppCompatImageView
:
IntArray
static
val
AppCompatImageView_android_src
:
Int
static
val
AppCompatImageView_srcCompat
:
Int
static
val
AppCompatImageView_tint
:
Int
static
val
AppCompatImageView_tintMode
:
Int
static
val
AppCompatSeekBar
:
IntArray
static
val
AppCompatSeekBar_android_thumb
:
Int
static
val
AppCompatSeekBar_tickMark
:
Int
static
val
AppCompatSeekBar_tickMarkTint
:
Int
static
val
AppCompatSeekBar_tickMarkTintMode
:
Int
static
val
AppCompatTextHelper
:
IntArray
static
val
AppCompatTextHelper_android_drawableBottom
:
Int
static
val
AppCompatTextHelper_android_drawableEnd
:
Int
static
val
AppCompatTextHelper_android_drawableLeft
:
Int
static
val
AppCompatTextHelper_android_drawableRight
:
Int
static
val
AppCompatTextHelper_android_drawableStart
:
Int
static
val
AppCompatTextHelper_android_drawableTop
:
Int
static
val
AppCompatTextHelper_android_textAppearance
:
Int
static
val
AppCompatTextView
:
IntArray
static
val
AppCompatTextView_android_textAppearance
:
Int
static
val
AppCompatTextView_autoSizeMaxTextSize
:
Int
static
val
AppCompatTextView_autoSizeMinTextSize
:
Int
static
val
AppCompatTextView_autoSizePresetSizes
:
Int
static
val
AppCompatTextView_autoSizeStepGranularity
:
Int
static
val
AppCompatTextView_autoSizeTextType
:
Int
static
val
AppCompatTextView_firstBaselineToTopHeight
:
Int
static
val
AppCompatTextView_fontFamily
:
Int
static
val
AppCompatTextView_lastBaselineToBottomHeight
:
Int
static
val
AppCompatTextView_lineHeight
:
Int
static
val
AppCompatTextView_textAllCaps
:
Int
static
val
AppCompatTheme
:
IntArray
static
val
AppCompatTheme_actionBarDivider
:
Int
static
val
AppCompatTheme_actionBarItemBackground
:
Int
static
val
AppCompatTheme_actionBarPopupTheme
:
Int
static
val
AppCompatTheme_actionBarSize
:
Int
static
val
AppCompatTheme_actionBarSplitStyle
:
Int
static
val
AppCompatTheme_actionBarStyle
:
Int
static
val
AppCompatTheme_actionBarTabBarStyle
:
Int
static
val
AppCompatTheme_actionBarTabStyle
:
Int
static
val
AppCompatTheme_actionBarTabTextStyle
:
Int
static
val
AppCompatTheme_actionBarTheme
:
Int
static
val
AppCompatTheme_actionBarWidgetTheme
:
Int
static
val
AppCompatTheme_actionButtonStyle
:
Int
static
val
AppCompatTheme_actionDropDownStyle
:
Int
static
val
AppCompatTheme_actionMenuTextAppearance
:
Int
static
val
AppCompatTheme_actionMenuTextColor
:
Int
static
val
AppCompatTheme_actionModeBackground
:
Int
static
val
AppCompatTheme_actionModeCloseButtonStyle
:
Int
static
val
AppCompatTheme_actionModeCloseDrawable
:
Int
static
val
AppCompatTheme_actionModeCopyDrawable
:
Int
static
val
AppCompatTheme_actionModeCutDrawable
:
Int
static
val
AppCompatTheme_actionModeFindDrawable
:
Int
static
val
AppCompatTheme_actionModePasteDrawable
:
Int
static
val
AppCompatTheme_actionModePopupWindowStyle
:
Int
static
val
AppCompatTheme_actionModeSelectAllDrawable
:
Int
static
val
AppCompatTheme_actionModeShareDrawable
:
Int
static
val
AppCompatTheme_actionModeSplitBackground
:
Int
static
val
AppCompatTheme_actionModeStyle
:
Int
static
val
AppCompatTheme_actionModeWebSearchDrawable
:
Int
static
val
AppCompatTheme_actionOverflowButtonStyle
:
Int
static
val
AppCompatTheme_actionOverflowMenuStyle
:
Int
static
val
AppCompatTheme_activityChooserViewStyle
:
Int
static
val
AppCompatTheme_alertDialogButtonGroupStyle
:
Int
static
val
AppCompatTheme_alertDialogCenterButtons
:
Int
static
val
AppCompatTheme_alertDialogStyle
:
Int
static
val
AppCompatTheme_alertDialogTheme
:
Int
static
val
AppCompatTheme_android_windowAnimationStyle
:
Int
static
val
AppCompatTheme_android_windowIsFloating
:
Int
static
val
AppCompatTheme_autoCompleteTextViewStyle
:
Int
static
val
AppCompatTheme_borderlessButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarNegativeButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarNeutralButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarPositiveButtonStyle
:
Int
static
val
AppCompatTheme_buttonBarStyle
:
Int
static
val
AppCompatTheme_buttonStyle
:
Int
static
val
AppCompatTheme_buttonStyleSmall
:
Int
static
val
AppCompatTheme_checkboxStyle
:
Int
static
val
AppCompatTheme_checkedTextViewStyle
:
Int
static
val
AppCompatTheme_colorAccent
:
Int
static
val
AppCompatTheme_colorBackgroundFloating
:
Int
static
val
AppCompatTheme_colorButtonNormal
:
Int
static
val
AppCompatTheme_colorControlActivated
:
Int
static
val
AppCompatTheme_colorControlHighlight
:
Int
static
val
AppCompatTheme_colorControlNormal
:
Int
static
val
AppCompatTheme_colorError
:
Int
static
val
AppCompatTheme_colorPrimary
:
Int
static
val
AppCompatTheme_colorPrimaryDark
:
Int
static
val
AppCompatTheme_colorSwitchThumbNormal
:
Int
static
val
AppCompatTheme_controlBackground
:
Int
static
val
AppCompatTheme_dialogCornerRadius
:
Int
static
val
AppCompatTheme_dialogPreferredPadding
:
Int
static
val
AppCompatTheme_dialogTheme
:
Int
static
val
AppCompatTheme_dividerHorizontal
:
Int
static
val
AppCompatTheme_dividerVertical
:
Int
static
val
AppCompatTheme_dropDownListViewStyle
:
Int
static
val
AppCompatTheme_dropdownListPreferredItemHeight
:
Int
static
val
AppCompatTheme_editTextBackground
:
Int
static
val
AppCompatTheme_editTextColor
:
Int
static
val
AppCompatTheme_editTextStyle
:
Int
static
val
AppCompatTheme_homeAsUpIndicator
:
Int
static
val
AppCompatTheme_imageButtonStyle
:
Int
static
val
AppCompatTheme_listChoiceBackgroundIndicator
:
Int
static
val
AppCompatTheme_listDividerAlertDialog
:
Int
static
val
AppCompatTheme_listMenuViewStyle
:
Int
static
val
AppCompatTheme_listPopupWindowStyle
:
Int
static
val
AppCompatTheme_listPreferredItemHeight
:
Int
static
val
AppCompatTheme_listPreferredItemHeightLarge
:
Int
static
val
AppCompatTheme_listPreferredItemHeightSmall
:
Int
static
val
AppCompatTheme_listPreferredItemPaddingLeft
:
Int
static
val
AppCompatTheme_listPreferredItemPaddingRight
:
Int
static
val
AppCompatTheme_panelBackground
:
Int
static
val
AppCompatTheme_panelMenuListTheme
:
Int
static
val
AppCompatTheme_panelMenuListWidth
:
Int
static
val
AppCompatTheme_popupMenuStyle
:
Int
static
val
AppCompatTheme_popupWindowStyle
:
Int
static
val
AppCompatTheme_radioButtonStyle
:
Int
static
val
AppCompatTheme_ratingBarStyle
:
Int
static
val
AppCompatTheme_ratingBarStyleIndicator
:
Int
static
val
AppCompatTheme_ratingBarStyleSmall
:
Int
static
val
AppCompatTheme_searchViewStyle
:
Int
static
val
AppCompatTheme_seekBarStyle
:
Int
static
val
AppCompatTheme_selectableItemBackground
:
Int
static
val
AppCompatTheme_selectableItemBackgroundBorderless
:
Int
static
val
AppCompatTheme_spinnerDropDownItemStyle
:
Int
static
val
AppCompatTheme_spinnerStyle
:
Int
static
val
AppCompatTheme_switchStyle
:
Int
static
val
AppCompatTheme_textAppearanceLargePopupMenu
:
Int
static
val
AppCompatTheme_textAppearanceListItem
:
Int
static
val
AppCompatTheme_textAppearanceListItemSecondary
:
Int
static
val
AppCompatTheme_textAppearanceListItemSmall
:
Int
static
val
AppCompatTheme_textAppearancePopupMenuHeader
:
Int
static
val
AppCompatTheme_textAppearanceSearchResultSubtitle
:
Int
static
val
AppCompatTheme_textAppearanceSearchResultTitle
:
Int
static
val
AppCompatTheme_textAppearanceSmallPopupMenu
:
Int
static
val
AppCompatTheme_textColorAlertDialogListItem
:
Int
static
val
AppCompatTheme_textColorSearchUrl
:
Int
static
val
AppCompatTheme_toolbarNavigationButtonStyle
:
Int
static
val
AppCompatTheme_toolbarStyle
:
Int
static
val
AppCompatTheme_tooltipForegroundColor
:
Int
static
val
AppCompatTheme_tooltipFrameBackground
:
Int
static
val
AppCompatTheme_viewInflaterClass
:
Int
static
val
AppCompatTheme_windowActionBar
:
Int
static
val
AppCompatTheme_windowActionBarOverlay
:
Int
static
val
AppCompatTheme_windowActionModeOverlay
:
Int
static
val
AppCompatTheme_windowFixedHeightMajor
:
Int
static
val
AppCompatTheme_windowFixedHeightMinor
:
Int
static
val
AppCompatTheme_windowFixedWidthMajor
:
Int
static
val
AppCompatTheme_windowFixedWidthMinor
:
Int
static
val
AppCompatTheme_windowMinWidthMajor
:
Int
static
val
AppCompatTheme_windowMinWidthMinor
:
Int
static
val
AppCompatTheme_windowNoTitle
:
Int
static
val
BottomAppBar
:
IntArray
static
val
BottomAppBar_backgroundTint
:
Int
static
val
BottomAppBar_fabAlignmentMode
:
Int
static
val
BottomAppBar_fabCradleMargin
:
Int
static
val
BottomAppBar_fabCradleRoundedCornerRadius
:
Int
static
val
BottomAppBar_fabCradleVerticalOffset
:
Int
static
val
BottomAppBar_hideOnScroll
:
Int
static
val
BottomNavigationView
:
IntArray
static
val
BottomNavigationView_elevation
:
Int
static
val
BottomNavigationView_itemBackground
:
Int
static
val
BottomNavigationView_itemHorizontalTranslationEnabled
:
Int
static
val
BottomNavigationView_itemIconSize
:
Int
static
val
BottomNavigationView_itemIconTint
:
Int
static
val
BottomNavigationView_itemTextAppearanceActive
:
Int
static
val
BottomNavigationView_itemTextAppearanceInactive
:
Int
static
val
BottomNavigationView_itemTextColor
:
Int
static
val
BottomNavigationView_labelVisibilityMode
:
Int
static
val
BottomNavigationView_menu
:
Int
static
val
BottomSheetBehavior_Layout
:
IntArray
static
val
BottomSheetBehavior_Layout_behavior_fitToContents
:
Int
static
val
BottomSheetBehavior_Layout_behavior_hideable
:
Int
static
val
BottomSheetBehavior_Layout_behavior_peekHeight
:
Int
static
val
BottomSheetBehavior_Layout_behavior_skipCollapsed
:
Int
static
val
ButtonBarLayout
:
IntArray
static
val
ButtonBarLayout_allowStacking
:
Int
static
val
CardView
:
IntArray
static
val
CardView_android_minHeight
:
Int
static
val
CardView_android_minWidth
:
Int
static
val
CardView_cardBackgroundColor
:
Int
static
val
CardView_cardCornerRadius
:
Int
static
val
CardView_cardElevation
:
Int
static
val
CardView_cardMaxElevation
:
Int
static
val
CardView_cardPreventCornerOverlap
:
Int
static
val
CardView_cardUseCompatPadding
:
Int
static
val
CardView_contentPadding
:
Int
static
val
CardView_contentPaddingBottom
:
Int
static
val
CardView_contentPaddingLeft
:
Int
static
val
CardView_contentPaddingRight
:
Int
static
val
CardView_contentPaddingTop
:
Int
static
val
Chip
:
IntArray
static
val
ChipGroup
:
IntArray
static
val
ChipGroup_checkedChip
:
Int
static
val
ChipGroup_chipSpacing
:
Int
static
val
ChipGroup_chipSpacingHorizontal
:
Int
static
val
ChipGroup_chipSpacingVertical
:
Int
static
val
ChipGroup_singleLine
:
Int
static
val
ChipGroup_singleSelection
:
Int
static
val
Chip_android_checkable
:
Int
static
val
Chip_android_ellipsize
:
Int
static
val
Chip_android_maxWidth
:
Int
static
val
Chip_android_text
:
Int
static
val
Chip_android_textAppearance
:
Int
static
val
Chip_checkedIcon
:
Int
static
val
Chip_checkedIconEnabled
:
Int
static
val
Chip_checkedIconVisible
:
Int
static
val
Chip_chipBackgroundColor
:
Int
static
val
Chip_chipCornerRadius
:
Int
static
val
Chip_chipEndPadding
:
Int
static
val
Chip_chipIcon
:
Int
static
val
Chip_chipIconEnabled
:
Int
static
val
Chip_chipIconSize
:
Int
static
val
Chip_chipIconTint
:
Int
static
val
Chip_chipIconVisible
:
Int
static
val
Chip_chipMinHeight
:
Int
static
val
Chip_chipStartPadding
:
Int
static
val
Chip_chipStrokeColor
:
Int
static
val
Chip_chipStrokeWidth
:
Int
static
val
Chip_closeIcon
:
Int
static
val
Chip_closeIconEnabled
:
Int
static
val
Chip_closeIconEndPadding
:
Int
static
val
Chip_closeIconSize
:
Int
static
val
Chip_closeIconStartPadding
:
Int
static
val
Chip_closeIconTint
:
Int
static
val
Chip_closeIconVisible
:
Int
static
val
Chip_hideMotionSpec
:
Int
static
val
Chip_iconEndPadding
:
Int
static
val
Chip_iconStartPadding
:
Int
static
val
Chip_rippleColor
:
Int
static
val
Chip_showMotionSpec
:
Int
static
val
Chip_textEndPadding
:
Int
static
val
Chip_textStartPadding
:
Int
static
val
CollapsingToolbarLayout
:
IntArray
static
val
CollapsingToolbarLayout_Layout
:
IntArray
static
val
CollapsingToolbarLayout_Layout_layout_collapseMode
:
Int
static
val
CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier
:
Int
static
val
CollapsingToolbarLayout_collapsedTitleGravity
:
Int
static
val
CollapsingToolbarLayout_collapsedTitleTextAppearance
:
Int
static
val
CollapsingToolbarLayout_contentScrim
:
Int
static
val
CollapsingToolbarLayout_expandedTitleGravity
:
Int
static
val
CollapsingToolbarLayout_expandedTitleMargin
:
Int
static
val
CollapsingToolbarLayout_expandedTitleMarginBottom
:
Int
static
val
CollapsingToolbarLayout_expandedTitleMarginEnd
:
Int
static
val
CollapsingToolbarLayout_expandedTitleMarginStart
:
Int
static
val
CollapsingToolbarLayout_expandedTitleMarginTop
:
Int
static
val
CollapsingToolbarLayout_expandedTitleTextAppearance
:
Int
static
val
CollapsingToolbarLayout_scrimAnimationDuration
:
Int
static
val
CollapsingToolbarLayout_scrimVisibleHeightTrigger
:
Int
static
val
CollapsingToolbarLayout_statusBarScrim
:
Int
static
val
CollapsingToolbarLayout_title
:
Int
static
val
CollapsingToolbarLayout_titleEnabled
:
Int
static
val
CollapsingToolbarLayout_toolbarId
:
Int
static
val
ColorStateListItem
:
IntArray
static
val
ColorStateListItem_alpha
:
Int
static
val
ColorStateListItem_android_alpha
:
Int
static
val
ColorStateListItem_android_color
:
Int
static
val
CompoundButton
:
IntArray
static
val
CompoundButton_android_button
:
Int
static
val
CompoundButton_buttonTint
:
Int
static
val
CompoundButton_buttonTintMode
:
Int
static
val
ConstraintLayout_Layout
:
IntArray
static
val
ConstraintLayout_Layout_android_maxHeight
:
Int
static
val
ConstraintLayout_Layout_android_maxWidth
:
Int
static
val
ConstraintLayout_Layout_android_minHeight
:
Int
static
val
ConstraintLayout_Layout_android_minWidth
:
Int
static
val
ConstraintLayout_Layout_android_orientation
:
Int
static
val
ConstraintLayout_Layout_barrierAllowsGoneWidgets
:
Int
static
val
ConstraintLayout_Layout_barrierDirection
:
Int
static
val
ConstraintLayout_Layout_chainUseRtl
:
Int
static
val
ConstraintLayout_Layout_constraintSet
:
Int
static
val
ConstraintLayout_Layout_constraint_referenced_ids
:
Int
static
val
ConstraintLayout_Layout_layout_constrainedHeight
:
Int
static
val
ConstraintLayout_Layout_layout_constrainedWidth
:
Int
static
val
ConstraintLayout_Layout_layout_constraintBaseline_creator
:
Int
static
val
ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintBottom_creator
:
Int
static
val
ConstraintLayout_Layout_layout_constraintBottom_toBottomOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintBottom_toTopOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintCircle
:
Int
static
val
ConstraintLayout_Layout_layout_constraintCircleAngle
:
Int
static
val
ConstraintLayout_Layout_layout_constraintCircleRadius
:
Int
static
val
ConstraintLayout_Layout_layout_constraintDimensionRatio
:
Int
static
val
ConstraintLayout_Layout_layout_constraintEnd_toEndOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintEnd_toStartOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintGuide_begin
:
Int
static
val
ConstraintLayout_Layout_layout_constraintGuide_end
:
Int
static
val
ConstraintLayout_Layout_layout_constraintGuide_percent
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHeight_default
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHeight_max
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHeight_min
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHeight_percent
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHorizontal_bias
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle
:
Int
static
val
ConstraintLayout_Layout_layout_constraintHorizontal_weight
:
Int
static
val
ConstraintLayout_Layout_layout_constraintLeft_creator
:
Int
static
val
ConstraintLayout_Layout_layout_constraintLeft_toLeftOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintLeft_toRightOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintRight_creator
:
Int
static
val
ConstraintLayout_Layout_layout_constraintRight_toLeftOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintRight_toRightOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintStart_toEndOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintStart_toStartOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintTop_creator
:
Int
static
val
ConstraintLayout_Layout_layout_constraintTop_toBottomOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintTop_toTopOf
:
Int
static
val
ConstraintLayout_Layout_layout_constraintVertical_bias
:
Int
static
val
ConstraintLayout_Layout_layout_constraintVertical_chainStyle
:
Int
static
val
ConstraintLayout_Layout_layout_constraintVertical_weight
:
Int
static
val
ConstraintLayout_Layout_layout_constraintWidth_default
:
Int
static
val
ConstraintLayout_Layout_layout_constraintWidth_max
:
Int
static
val
ConstraintLayout_Layout_layout_constraintWidth_min
:
Int
static
val
ConstraintLayout_Layout_layout_constraintWidth_percent
:
Int
static
val
ConstraintLayout_Layout_layout_editor_absoluteX
:
Int
static
val
ConstraintLayout_Layout_layout_editor_absoluteY
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginBottom
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginEnd
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginLeft
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginRight
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginStart
:
Int
static
val
ConstraintLayout_Layout_layout_goneMarginTop
:
Int
static
val
ConstraintLayout_Layout_layout_optimizationLevel
:
Int
static
val
ConstraintLayout_placeholder
:
IntArray
static
val
ConstraintLayout_placeholder_content
:
Int
static
val
ConstraintLayout_placeholder_emptyVisibility
:
Int
static
val
ConstraintSet
:
IntArray
static
val
ConstraintSet_android_alpha
:
Int
static
val
ConstraintSet_android_elevation
:
Int
static
val
ConstraintSet_android_id
:
Int
static
val
ConstraintSet_android_layout_height
:
Int
static
val
ConstraintSet_android_layout_marginBottom
:
Int
static
val
ConstraintSet_android_layout_marginEnd
:
Int
static
val
ConstraintSet_android_layout_marginLeft
:
Int
static
val
ConstraintSet_android_layout_marginRight
:
Int
static
val
ConstraintSet_android_layout_marginStart
:
Int
static
val
ConstraintSet_android_layout_marginTop
:
Int
static
val
ConstraintSet_android_layout_width
:
Int
static
val
ConstraintSet_android_maxHeight
:
Int
static
val
ConstraintSet_android_maxWidth
:
Int
static
val
ConstraintSet_android_minHeight
:
Int
static
val
ConstraintSet_android_minWidth
:
Int
static
val
ConstraintSet_android_orientation
:
Int
static
val
ConstraintSet_android_rotation
:
Int
static
val
ConstraintSet_android_rotationX
:
Int
static
val
ConstraintSet_android_rotationY
:
Int
static
val
ConstraintSet_android_scaleX
:
Int
static
val
ConstraintSet_android_scaleY
:
Int
static
val
ConstraintSet_android_transformPivotX
:
Int
static
val
ConstraintSet_android_transformPivotY
:
Int
static
val
ConstraintSet_android_translationX
:
Int
static
val
ConstraintSet_android_translationY
:
Int
static
val
ConstraintSet_android_translationZ
:
Int
static
val
ConstraintSet_android_visibility
:
Int
static
val
ConstraintSet_barrierAllowsGoneWidgets
:
Int
static
val
ConstraintSet_barrierDirection
:
Int
static
val
ConstraintSet_chainUseRtl
:
Int
static
val
ConstraintSet_constraint_referenced_ids
:
Int
static
val
ConstraintSet_layout_constrainedHeight
:
Int
static
val
ConstraintSet_layout_constrainedWidth
:
Int
static
val
ConstraintSet_layout_constraintBaseline_creator
:
Int
static
val
ConstraintSet_layout_constraintBaseline_toBaselineOf
:
Int
static
val
ConstraintSet_layout_constraintBottom_creator
:
Int
static
val
ConstraintSet_layout_constraintBottom_toBottomOf
:
Int
static
val
ConstraintSet_layout_constraintBottom_toTopOf
:
Int
static
val
ConstraintSet_layout_constraintCircle
:
Int
static
val
ConstraintSet_layout_constraintCircleAngle
:
Int
static
val
ConstraintSet_layout_constraintCircleRadius
:
Int
static
val
ConstraintSet_layout_constraintDimensionRatio
:
Int
static
val
ConstraintSet_layout_constraintEnd_toEndOf
:
Int
static
val
ConstraintSet_layout_constraintEnd_toStartOf
:
Int
static
val
ConstraintSet_layout_constraintGuide_begin
:
Int
static
val
ConstraintSet_layout_constraintGuide_end
:
Int
static
val
ConstraintSet_layout_constraintGuide_percent
:
Int
static
val
ConstraintSet_layout_constraintHeight_default
:
Int
static
val
ConstraintSet_layout_constraintHeight_max
:
Int
static
val
ConstraintSet_layout_constraintHeight_min
:
Int
static
val
ConstraintSet_layout_constraintHeight_percent
:
Int
static
val
ConstraintSet_layout_constraintHorizontal_bias
:
Int
static
val
ConstraintSet_layout_constraintHorizontal_chainStyle
:
Int
static
val
ConstraintSet_layout_constraintHorizontal_weight
:
Int
static
val
ConstraintSet_layout_constraintLeft_creator
:
Int
static
val
ConstraintSet_layout_constraintLeft_toLeftOf
:
Int
static
val
ConstraintSet_layout_constraintLeft_toRightOf
:
Int
static
val
ConstraintSet_layout_constraintRight_creator
:
Int
static
val
ConstraintSet_layout_constraintRight_toLeftOf
:
Int
static
val
ConstraintSet_layout_constraintRight_toRightOf
:
Int
static
val
ConstraintSet_layout_constraintStart_toEndOf
:
Int
static
val
ConstraintSet_layout_constraintStart_toStartOf
:
Int
static
val
ConstraintSet_layout_constraintTop_creator
:
Int
static
val
ConstraintSet_layout_constraintTop_toBottomOf
:
Int
static
val
ConstraintSet_layout_constraintTop_toTopOf
:
Int
static
val
ConstraintSet_layout_constraintVertical_bias
:
Int
static
val
ConstraintSet_layout_constraintVertical_chainStyle
:
Int
static
val
ConstraintSet_layout_constraintVertical_weight
:
Int
static
val
ConstraintSet_layout_constraintWidth_default
:
Int
static
val
ConstraintSet_layout_constraintWidth_max
:
Int
static
val
ConstraintSet_layout_constraintWidth_min
:
Int
static
val
ConstraintSet_layout_constraintWidth_percent
:
Int
static
val
ConstraintSet_layout_editor_absoluteX
:
Int
static
val
ConstraintSet_layout_editor_absoluteY
:
Int
static
val
ConstraintSet_layout_goneMarginBottom
:
Int
static
val
ConstraintSet_layout_goneMarginEnd
:
Int
static
val
ConstraintSet_layout_goneMarginLeft
:
Int
static
val
ConstraintSet_layout_goneMarginRight
:
Int
static
val
ConstraintSet_layout_goneMarginStart
:
Int
static
val
ConstraintSet_layout_goneMarginTop
:
Int
static
val
CoordinatorLayout
:
IntArray
static
val
CoordinatorLayout_Layout
:
IntArray
static
val
CoordinatorLayout_Layout_android_layout_gravity
:
Int
static
val
CoordinatorLayout_Layout_layout_anchor
:
Int
static
val
CoordinatorLayout_Layout_layout_anchorGravity
:
Int
static
val
CoordinatorLayout_Layout_layout_behavior
:
Int
static
val
CoordinatorLayout_Layout_layout_dodgeInsetEdges
:
Int
static
val
CoordinatorLayout_Layout_layout_insetEdge
:
Int
static
val
CoordinatorLayout_Layout_layout_keyline
:
Int
static
val
CoordinatorLayout_keylines
:
Int
static
val
CoordinatorLayout_statusBarBackground
:
Int
static
val
DesignTheme
:
IntArray
static
val
DesignTheme_bottomSheetDialogTheme
:
Int
static
val
DesignTheme_bottomSheetStyle
:
Int
static
val
DrawerArrowToggle
:
IntArray
static
val
DrawerArrowToggle_arrowHeadLength
:
Int
static
val
DrawerArrowToggle_arrowShaftLength
:
Int
static
val
DrawerArrowToggle_barLength
:
Int
static
val
DrawerArrowToggle_color
:
Int
static
val
DrawerArrowToggle_drawableSize
:
Int
static
val
DrawerArrowToggle_gapBetweenBars
:
Int
static
val
DrawerArrowToggle_spinBars
:
Int
static
val
DrawerArrowToggle_thickness
:
Int
static
val
FloatingActionButton
:
IntArray
static
val
FloatingActionButton_Behavior_Layout
:
IntArray
static
val
FloatingActionButton_Behavior_Layout_behavior_autoHide
:
Int
static
val
FloatingActionButton_backgroundTint
:
Int
static
val
FloatingActionButton_backgroundTintMode
:
Int
static
val
FloatingActionButton_borderWidth
:
Int
static
val
FloatingActionButton_elevation
:
Int
static
val
FloatingActionButton_fabCustomSize
:
Int
static
val
FloatingActionButton_fabSize
:
Int
static
val
FloatingActionButton_hideMotionSpec
:
Int
static
val
FloatingActionButton_hoveredFocusedTranslationZ
:
Int
static
val
FloatingActionButton_maxImageSize
:
Int
static
val
FloatingActionButton_pressedTranslationZ
:
Int
static
val
FloatingActionButton_rippleColor
:
Int
static
val
FloatingActionButton_showMotionSpec
:
Int
static
val
FloatingActionButton_useCompatPadding
:
Int
static
val
FlowLayout
:
IntArray
static
val
FlowLayout_itemSpacing
:
Int
static
val
FlowLayout_lineSpacing
:
Int
static
val
FontFamily
:
IntArray
static
val
FontFamilyFont
:
IntArray
static
val
FontFamilyFont_android_font
:
Int
static
val
FontFamilyFont_android_fontStyle
:
Int
static
val
FontFamilyFont_android_fontVariationSettings
:
Int
static
val
FontFamilyFont_android_fontWeight
:
Int
static
val
FontFamilyFont_android_ttcIndex
:
Int
static
val
FontFamilyFont_font
:
Int
static
val
FontFamilyFont_fontStyle
:
Int
static
val
FontFamilyFont_fontVariationSettings
:
Int
static
val
FontFamilyFont_fontWeight
:
Int
static
val
FontFamilyFont_ttcIndex
:
Int
static
val
FontFamily_fontProviderAuthority
:
Int
static
val
FontFamily_fontProviderCerts
:
Int
static
val
FontFamily_fontProviderFetchStrategy
:
Int
static
val
FontFamily_fontProviderFetchTimeout
:
Int
static
val
FontFamily_fontProviderPackage
:
Int
static
val
FontFamily_fontProviderQuery
:
Int
static
val
ForegroundLinearLayout
:
IntArray
static
val
ForegroundLinearLayout_android_foreground
:
Int
static
val
ForegroundLinearLayout_android_foregroundGravity
:
Int
static
val
ForegroundLinearLayout_foregroundInsidePadding
:
Int
static
val
GradientColor
:
IntArray
static
val
GradientColorItem
:
IntArray
static
val
GradientColorItem_android_color
:
Int
static
val
GradientColorItem_android_offset
:
Int
static
val
GradientColor_android_centerColor
:
Int
static
val
GradientColor_android_centerX
:
Int
static
val
GradientColor_android_centerY
:
Int
static
val
GradientColor_android_endColor
:
Int
static
val
GradientColor_android_endX
:
Int
static
val
GradientColor_android_endY
:
Int
static
val
GradientColor_android_gradientRadius
:
Int
static
val
GradientColor_android_startColor
:
Int
static
val
GradientColor_android_startX
:
Int
static
val
GradientColor_android_startY
:
Int
static
val
GradientColor_android_tileMode
:
Int
static
val
GradientColor_android_type
:
Int
static
val
LinearConstraintLayout
:
IntArray
static
val
LinearConstraintLayout_android_orientation
:
Int
static
val
LinearLayoutCompat
:
IntArray
static
val
LinearLayoutCompat_Layout
:
IntArray
static
val
LinearLayoutCompat_Layout_android_layout_gravity
:
Int
static
val
LinearLayoutCompat_Layout_android_layout_height
:
Int
static
val
LinearLayoutCompat_Layout_android_layout_weight
:
Int
static
val
LinearLayoutCompat_Layout_android_layout_width
:
Int
static
val
LinearLayoutCompat_android_baselineAligned
:
Int
static
val
LinearLayoutCompat_android_baselineAlignedChildIndex
:
Int
static
val
LinearLayoutCompat_android_gravity
:
Int
static
val
LinearLayoutCompat_android_orientation
:
Int
static
val
LinearLayoutCompat_android_weightSum
:
Int
static
val
LinearLayoutCompat_divider
:
Int
static
val
LinearLayoutCompat_dividerPadding
:
Int
static
val
LinearLayoutCompat_measureWithLargestChild
:
Int
static
val
LinearLayoutCompat_showDividers
:
Int
static
val
ListPopupWindow
:
IntArray
static
val
ListPopupWindow_android_dropDownHorizontalOffset
:
Int
static
val
ListPopupWindow_android_dropDownVerticalOffset
:
Int
static
val
MaterialButton
:
IntArray
static
val
MaterialButton_android_insetBottom
:
Int
static
val
MaterialButton_android_insetLeft
:
Int
static
val
MaterialButton_android_insetRight
:
Int
static
val
MaterialButton_android_insetTop
:
Int
static
val
MaterialButton_backgroundTint
:
Int
static
val
MaterialButton_backgroundTintMode
:
Int
static
val
MaterialButton_cornerRadius
:
Int
static
val
MaterialButton_icon
:
Int
static
val
MaterialButton_iconGravity
:
Int
static
val
MaterialButton_iconPadding
:
Int
static
val
MaterialButton_iconSize
:
Int
static
val
MaterialButton_iconTint
:
Int
static
val
MaterialButton_iconTintMode
:
Int
static
val
MaterialButton_rippleColor
:
Int
static
val
MaterialButton_strokeColor
:
Int
static
val
MaterialButton_strokeWidth
:
Int
static
val
MaterialCardView
:
IntArray
static
val
MaterialCardView_strokeColor
:
Int
static
val
MaterialCardView_strokeWidth
:
Int
static
val
MaterialComponentsTheme
:
IntArray
static
val
MaterialComponentsTheme_bottomSheetDialogTheme
:
Int
static
val
MaterialComponentsTheme_bottomSheetStyle
:
Int
static
val
MaterialComponentsTheme_chipGroupStyle
:
Int
static
val
MaterialComponentsTheme_chipStandaloneStyle
:
Int
static
val
MaterialComponentsTheme_chipStyle
:
Int
static
val
MaterialComponentsTheme_colorAccent
:
Int
static
val
MaterialComponentsTheme_colorBackgroundFloating
:
Int
static
val
MaterialComponentsTheme_colorPrimary
:
Int
static
val
MaterialComponentsTheme_colorPrimaryDark
:
Int
static
val
MaterialComponentsTheme_colorSecondary
:
Int
static
val
MaterialComponentsTheme_editTextStyle
:
Int
static
val
MaterialComponentsTheme_floatingActionButtonStyle
:
Int
static
val
MaterialComponentsTheme_materialButtonStyle
:
Int
static
val
MaterialComponentsTheme_materialCardViewStyle
:
Int
static
val
MaterialComponentsTheme_navigationViewStyle
:
Int
static
val
MaterialComponentsTheme_scrimBackground
:
Int
static
val
MaterialComponentsTheme_snackbarButtonStyle
:
Int
static
val
MaterialComponentsTheme_tabStyle
:
Int
static
val
MaterialComponentsTheme_textAppearanceBody1
:
Int
static
val
MaterialComponentsTheme_textAppearanceBody2
:
Int
static
val
MaterialComponentsTheme_textAppearanceButton
:
Int
static
val
MaterialComponentsTheme_textAppearanceCaption
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline1
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline2
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline3
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline4
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline5
:
Int
static
val
MaterialComponentsTheme_textAppearanceHeadline6
:
Int
static
val
MaterialComponentsTheme_textAppearanceOverline
:
Int
static
val
MaterialComponentsTheme_textAppearanceSubtitle1
:
Int
static
val
MaterialComponentsTheme_textAppearanceSubtitle2
:
Int
static
val
MaterialComponentsTheme_textInputStyle
:
Int
static
val
MenuGroup
:
IntArray
static
val
MenuGroup_android_checkableBehavior
:
Int
static
val
MenuGroup_android_enabled
:
Int
static
val
MenuGroup_android_id
:
Int
static
val
MenuGroup_android_menuCategory
:
Int
static
val
MenuGroup_android_orderInCategory
:
Int
static
val
MenuGroup_android_visible
:
Int
static
val
MenuItem
:
IntArray
static
val
MenuItem_actionLayout
:
Int
static
val
MenuItem_actionProviderClass
:
Int
static
val
MenuItem_actionViewClass
:
Int
static
val
MenuItem_alphabeticModifiers
:
Int
static
val
MenuItem_android_alphabeticShortcut
:
Int
static
val
MenuItem_android_checkable
:
Int
static
val
MenuItem_android_checked
:
Int
static
val
MenuItem_android_enabled
:
Int
static
val
MenuItem_android_icon
:
Int
static
val
MenuItem_android_id
:
Int
static
val
MenuItem_android_menuCategory
:
Int
static
val
MenuItem_android_numericShortcut
:
Int
static
val
MenuItem_android_onClick
:
Int
static
val
MenuItem_android_orderInCategory
:
Int
static
val
MenuItem_android_title
:
Int
static
val
MenuItem_android_titleCondensed
:
Int
static
val
MenuItem_android_visible
:
Int
static
val
MenuItem_contentDescription
:
Int
static
val
MenuItem_iconTint
:
Int
static
val
MenuItem_iconTintMode
:
Int
static
val
MenuItem_numericModifiers
:
Int
static
val
MenuItem_showAsAction
:
Int
static
val
MenuItem_tooltipText
:
Int
static
val
MenuView
:
IntArray
static
val
MenuView_android_headerBackground
:
Int
static
val
MenuView_android_horizontalDivider
:
Int
static
val
MenuView_android_itemBackground
:
Int
static
val
MenuView_android_itemIconDisabledAlpha
:
Int
static
val
MenuView_android_itemTextAppearance
:
Int
static
val
MenuView_android_verticalDivider
:
Int
static
val
MenuView_android_windowAnimationStyle
:
Int
static
val
MenuView_preserveIconSpacing
:
Int
static
val
MenuView_subMenuArrow
:
Int
static
val
NavigationView
:
IntArray
static
val
NavigationView_android_background
:
Int
static
val
NavigationView_android_fitsSystemWindows
:
Int
static
val
NavigationView_android_maxWidth
:
Int
static
val
NavigationView_elevation
:
Int
static
val
NavigationView_headerLayout
:
Int
static
val
NavigationView_itemBackground
:
Int
static
val
NavigationView_itemHorizontalPadding
:
Int
static
val
NavigationView_itemIconPadding
:
Int
static
val
NavigationView_itemIconTint
:
Int
static
val
NavigationView_itemTextAppearance
:
Int
static
val
NavigationView_itemTextColor
:
Int
static
val
NavigationView_menu
:
Int
static
val
PopupWindow
:
IntArray
static
val
PopupWindowBackgroundState
:
IntArray
static
val
PopupWindowBackgroundState_state_above_anchor
:
Int
static
val
PopupWindow_android_popupAnimationStyle
:
Int
static
val
PopupWindow_android_popupBackground
:
Int
static
val
PopupWindow_overlapAnchor
:
Int
static
val
RecycleListView
:
IntArray
static
val
RecycleListView_paddingBottomNoButtons
:
Int
static
val
RecycleListView_paddingTopNoTitle
:
Int
static
val
RecyclerView
:
IntArray
static
val
RecyclerView_android_descendantFocusability
:
Int
static
val
RecyclerView_android_orientation
:
Int
static
val
RecyclerView_fastScrollEnabled
:
Int
static
val
RecyclerView_fastScrollHorizontalThumbDrawable
:
Int
static
val
RecyclerView_fastScrollHorizontalTrackDrawable
:
Int
static
val
RecyclerView_fastScrollVerticalThumbDrawable
:
Int
static
val
RecyclerView_fastScrollVerticalTrackDrawable
:
Int
static
val
RecyclerView_layoutManager
:
Int
static
val
RecyclerView_reverseLayout
:
Int
static
val
RecyclerView_spanCount
:
Int
static
val
RecyclerView_stackFromEnd
:
Int
static
val
ScrimInsetsFrameLayout
:
IntArray
static
val
ScrimInsetsFrameLayout_insetForeground
:
Int
static
val
ScrollingViewBehavior_Layout
:
IntArray
static
val
ScrollingViewBehavior_Layout_behavior_overlapTop
:
Int
static
val
SearchView
:
IntArray
static
val
SearchView_android_focusable
:
Int
static
val
SearchView_android_imeOptions
:
Int
static
val
SearchView_android_inputType
:
Int
static
val
SearchView_android_maxWidth
:
Int
static
val
SearchView_closeIcon
:
Int
static
val
SearchView_commitIcon
:
Int
static
val
SearchView_defaultQueryHint
:
Int
static
val
SearchView_goIcon
:
Int
static
val
SearchView_iconifiedByDefault
:
Int
static
val
SearchView_layout
:
Int
static
val
SearchView_queryBackground
:
Int
static
val
SearchView_queryHint
:
Int
static
val
SearchView_searchHintIcon
:
Int
static
val
SearchView_searchIcon
:
Int
static
val
SearchView_submitBackground
:
Int
static
val
SearchView_suggestionRowLayout
:
Int
static
val
SearchView_voiceIcon
:
Int
static
val
Snackbar
:
IntArray
static
val
SnackbarLayout
:
IntArray
static
val
SnackbarLayout_android_maxWidth
:
Int
static
val
SnackbarLayout_elevation
:
Int
static
val
SnackbarLayout_maxActionInlineWidth
:
Int
static
val
Snackbar_snackbarButtonStyle
:
Int
static
val
Snackbar_snackbarStyle
:
Int
static
val
Spinner
:
IntArray
static
val
Spinner_android_dropDownWidth
:
Int
static
val
Spinner_android_entries
:
Int
static
val
Spinner_android_popupBackground
:
Int
static
val
Spinner_android_prompt
:
Int
static
val
Spinner_popupTheme
:
Int
static
val
StateListDrawable
:
IntArray
static
val
StateListDrawableItem
:
IntArray
static
val
StateListDrawableItem_android_drawable
:
Int
static
val
StateListDrawable_android_constantSize
:
Int
static
val
StateListDrawable_android_dither
:
Int
static
val
StateListDrawable_android_enterFadeDuration
:
Int
static
val
StateListDrawable_android_exitFadeDuration
:
Int
static
val
StateListDrawable_android_variablePadding
:
Int
static
val
StateListDrawable_android_visible
:
Int
static
val
SwitchCompat
:
IntArray
static
val
SwitchCompat_android_textOff
:
Int
static
val
SwitchCompat_android_textOn
:
Int
static
val
SwitchCompat_android_thumb
:
Int
static
val
SwitchCompat_showText
:
Int
static
val
SwitchCompat_splitTrack
:
Int
static
val
SwitchCompat_switchMinWidth
:
Int
static
val
SwitchCompat_switchPadding
:
Int
static
val
SwitchCompat_switchTextAppearance
:
Int
static
val
SwitchCompat_thumbTextPadding
:
Int
static
val
SwitchCompat_thumbTint
:
Int
static
val
SwitchCompat_thumbTintMode
:
Int
static
val
SwitchCompat_track
:
Int
static
val
SwitchCompat_trackTint
:
Int
static
val
SwitchCompat_trackTintMode
:
Int
static
val
TabItem
:
IntArray
static
val
TabItem_android_icon
:
Int
static
val
TabItem_android_layout
:
Int
static
val
TabItem_android_text
:
Int
static
val
TabLayout
:
IntArray
static
val
TabLayout_tabBackground
:
Int
static
val
TabLayout_tabContentStart
:
Int
static
val
TabLayout_tabGravity
:
Int
static
val
TabLayout_tabIconTint
:
Int
static
val
TabLayout_tabIconTintMode
:
Int
static
val
TabLayout_tabIndicator
:
Int
static
val
TabLayout_tabIndicatorAnimationDuration
:
Int
static
val
TabLayout_tabIndicatorColor
:
Int
static
val
TabLayout_tabIndicatorFullWidth
:
Int
static
val
TabLayout_tabIndicatorGravity
:
Int
static
val
TabLayout_tabIndicatorHeight
:
Int
static
val
TabLayout_tabInlineLabel
:
Int
static
val
TabLayout_tabMaxWidth
:
Int
static
val
TabLayout_tabMinWidth
:
Int
static
val
TabLayout_tabMode
:
Int
static
val
TabLayout_tabPadding
:
Int
static
val
TabLayout_tabPaddingBottom
:
Int
static
val
TabLayout_tabPaddingEnd
:
Int
static
val
TabLayout_tabPaddingStart
:
Int
static
val
TabLayout_tabPaddingTop
:
Int
static
val
TabLayout_tabRippleColor
:
Int
static
val
TabLayout_tabSelectedTextColor
:
Int
static
val
TabLayout_tabTextAppearance
:
Int
static
val
TabLayout_tabTextColor
:
Int
static
val
TabLayout_tabUnboundedRipple
:
Int
static
val
TextAppearance
:
IntArray
static
val
TextAppearance_android_fontFamily
:
Int
static
val
TextAppearance_android_shadowColor
:
Int
static
val
TextAppearance_android_shadowDx
:
Int
static
val
TextAppearance_android_shadowDy
:
Int
static
val
TextAppearance_android_shadowRadius
:
Int
static
val
TextAppearance_android_textColor
:
Int
static
val
TextAppearance_android_textColorHint
:
Int
static
val
TextAppearance_android_textColorLink
:
Int
static
val
TextAppearance_android_textSize
:
Int
static
val
TextAppearance_android_textStyle
:
Int
static
val
TextAppearance_android_typeface
:
Int
static
val
TextAppearance_fontFamily
:
Int
static
val
TextAppearance_textAllCaps
:
Int
static
val
TextInputLayout
:
IntArray
static
val
TextInputLayout_android_hint
:
Int
static
val
TextInputLayout_android_textColorHint
:
Int
static
val
TextInputLayout_boxBackgroundColor
:
Int
static
val
TextInputLayout_boxBackgroundMode
:
Int
static
val
TextInputLayout_boxCollapsedPaddingTop
:
Int
static
val
TextInputLayout_boxCornerRadiusBottomEnd
:
Int
static
val
TextInputLayout_boxCornerRadiusBottomStart
:
Int
static
val
TextInputLayout_boxCornerRadiusTopEnd
:
Int
static
val
TextInputLayout_boxCornerRadiusTopStart
:
Int
static
val
TextInputLayout_boxStrokeColor
:
Int
static
val
TextInputLayout_boxStrokeWidth
:
Int
static
val
TextInputLayout_counterEnabled
:
Int
static
val
TextInputLayout_counterMaxLength
:
Int
static
val
TextInputLayout_counterOverflowTextAppearance
:
Int
static
val
TextInputLayout_counterTextAppearance
:
Int
static
val
TextInputLayout_errorEnabled
:
Int
static
val
TextInputLayout_errorTextAppearance
:
Int
static
val
TextInputLayout_helperText
:
Int
static
val
TextInputLayout_helperTextEnabled
:
Int
static
val
TextInputLayout_helperTextTextAppearance
:
Int
static
val
TextInputLayout_hintAnimationEnabled
:
Int
static
val
TextInputLayout_hintEnabled
:
Int
static
val
TextInputLayout_hintTextAppearance
:
Int
static
val
TextInputLayout_passwordToggleContentDescription
:
Int
static
val
TextInputLayout_passwordToggleDrawable
:
Int
static
val
TextInputLayout_passwordToggleEnabled
:
Int
static
val
TextInputLayout_passwordToggleTint
:
Int
static
val
TextInputLayout_passwordToggleTintMode
:
Int
static
val
ThemeEnforcement
:
IntArray
static
val
ThemeEnforcement_android_textAppearance
:
Int
static
val
ThemeEnforcement_enforceMaterialTheme
:
Int
static
val
ThemeEnforcement_enforceTextAppearance
:
Int
static
val
Toolbar
:
IntArray
static
val
Toolbar_android_gravity
:
Int
static
val
Toolbar_android_minHeight
:
Int
static
val
Toolbar_buttonGravity
:
Int
static
val
Toolbar_collapseContentDescription
:
Int
static
val
Toolbar_collapseIcon
:
Int
static
val
Toolbar_contentInsetEnd
:
Int
static
val
Toolbar_contentInsetEndWithActions
:
Int
static
val
Toolbar_contentInsetLeft
:
Int
static
val
Toolbar_contentInsetRight
:
Int
static
val
Toolbar_contentInsetStart
:
Int
static
val
Toolbar_contentInsetStartWithNavigation
:
Int
static
val
Toolbar_logo
:
Int
static
val
Toolbar_logoDescription
:
Int
static
val
Toolbar_maxButtonHeight
:
Int
static
val
Toolbar_navigationContentDescription
:
Int
static
val
Toolbar_navigationIcon
:
Int
static
val
Toolbar_popupTheme
:
Int
static
val
Toolbar_subtitle
:
Int
static
val
Toolbar_subtitleTextAppearance
:
Int
static
val
Toolbar_subtitleTextColor
:
Int
static
val
Toolbar_title
:
Int
static
val
Toolbar_titleMargin
:
Int
static
val
Toolbar_titleMarginBottom
:
Int
static
val
Toolbar_titleMarginEnd
:
Int
static
val
Toolbar_titleMarginStart
:
Int
static
val
Toolbar_titleMarginTop
:
Int
static
val
Toolbar_titleMargins
:
Int
static
val
Toolbar_titleTextAppearance
:
Int
static
val
Toolbar_titleTextColor
:
Int
static
val
View
:
IntArray
static
val
ViewBackgroundHelper
:
IntArray
static
val
ViewBackgroundHelper_android_background
:
Int
static
val
ViewBackgroundHelper_backgroundTint
:
Int
static
val
ViewBackgroundHelper_backgroundTintMode
:
Int
static
val
ViewStubCompat
:
IntArray
static
val
ViewStubCompat_android_id
:
Int
static
val
ViewStubCompat_android_inflatedId
:
Int
static
val
ViewStubCompat_android_layout
:
Int
static
val
View_android_focusable
:
Int
static
val
View_android_theme
:
Int
static
val
View_paddingEnd
:
Int
static
val
View_paddingStart
:
Int
static
val
View_theme
:
Int
package
com.jonasdevrient.citypinboard.account
Module Contents
class
AccountFragment
:
Fragment
Module Contents
AccountFragment
(
)
fun
onActivityCreated
(
savedInstanceState
:
Bundle
?
)
:
Unit
fun
onCreateView
(
inflater
:
LayoutInflater
,
container
:
ViewGroup
?
,
savedInstanceState
:
Bundle
?
)
:
View
?
lateinit
var
viewAdapter
:
Adapter
<
*
>
package
com.jonasdevrient.citypinboard.adapters
Module Contents
class
PinboardsAdapter
:
Adapter
<
MyViewHolder
>
Module Contents
PinboardsAdapter
(
context
:
Context
?
,
pinboards
:
List
<
Pinboard
>
)
inner
class
MyViewHolder
:
ViewHolder
Module Contents
MyViewHolder
(
itemView
:
View
)
var
currentPinboard
:
Pinboard
?
var
currentPosition
:
Int
fun
setData
(
pinboard
:
Pinboard
?
,
position
:
Int
)
:
Unit
val
context
:
Context
?
fun
getItemCount
(
)
:
Int
fun
onBindViewHolder
(
holder
:
MyViewHolder
,
position
:
Int
)
:
Unit
fun
onCreateViewHolder
(
parent
:
ViewGroup
,
p1
:
Int
)
:
MyViewHolder
val
pinboards
:
List
<
Pinboard
>
class
PostsAdapter
:
Adapter
<
MyViewHolder
>
Module Contents
PostsAdapter
(
context
:
Context
,
posts
:
MutableList
<
PostResponse
>
)
inner
class
MyViewHolder
:
ViewHolder
Module Contents
MyViewHolder
(
itemView
:
View
)
fun
setData
(
post
:
PostResponse
,
position
:
Int
)
:
Unit
fun
updateAmountOfLikes
(
)
:
Unit
val
context
:
Context
fun
getItemCount
(
)
:
Int
fun
onBindViewHolder
(
holder
:
MyViewHolder
,
position
:
Int
)
:
Unit
fun
onCreateViewHolder
(
parent
:
ViewGroup
,
viewType
:
Int
)
:
MyViewHolder
package
com.jonasdevrient.citypinboard.authentication
Module Contents
class
GeenInternetFragment
:
Fragment
Module Contents
GeenInternetFragment
(
)
fun
onCreateView
(
inflater
:
LayoutInflater
,
container
:
ViewGroup
?
,
savedInstanceState
:
Bundle
?
)
:
View
?
class
LoginFragment
:
Fragment
Module Contents
LoginFragment
(
)
fun
onActivityCreated
(
savedInstanceState
:
Bundle
?
)
:
Unit
fun
onCreate
(
savedInstanceState
:
Bundle
?
)
:
Unit
fun
onCreateView
(
inflater
:
LayoutInflater
,
container
:
ViewGroup
?
,
savedInstanceState
:
Bundle
?
)
:
View
?
lateinit
var
passwordInput
:
EditText
lateinit
var
passwordInputLayout
:
TextInputLayout
lateinit
var
usernameInput
:
EditText
lateinit
var
usernameInputLayout
:
TextInputLayout
class
RegistreerFragment
:
Fragment
Module Contents
RegistreerFragment
(
)
fun
onActivityCreated
(
savedInstanceState
:
Bundle
?
)
:
Unit
fun
onCreateView
(
inflater
:
LayoutInflater
,
container
:
ViewGroup
?
,
savedInstanceState
:
Bundle
?
)
:
View
?
package
com.jonasdevrient.citypinboard.models
Module Contents
data
class
Gebruiker
Module Contents
Gebruiker
(
username
:
String
,
password
:
String
)
val
password
:
String
val
username
:
String
data
class
Location
Module Contents
Location
(
longitude
:
Double
?
,
latitude
:
Double
?
)
var
latitude
:
Double
?
var
longitude
:
Double
?
data
class
Pinboard
Module Contents
Pinboard
(
)
Pinboard
(
_id
:
String
,
city
:
String
,
location
:
Location
,
posts
:
MutableList
<
PostResponse
>
?
=
mutableListOf()
)
var
_id
:
String
val
amountOfPosts
:
Int
var
city
:
String
var
location
:
Location
var
posts
:
MutableList
<
PostResponse
>
?
data
class
Post
Module Contents
Post
(
title
:
String
,
body
:
String
,
dateCreated
:
Date
?
=
null
,
likes
:
Int
=
0
,
creator
:
String
?
=
null
)
val
body
:
String
val
creator
:
String
?
val
dateCreated
:
Date
?
var
likes
:
Int
val
title
:
String
object
StadFoto
Module Contents
fun
image
(
stad
:
String
)
:
String
package
com.jonasdevrient.citypinboard.persistence
Module Contents
abstract
class
ApplicationDatabase
:
RoomDatabase
Module Contents
ApplicationDatabase
(
)
abstract
fun
pinboardDao
(
)
:
PinboardDao
open
class
ApplicationDatabase_Impl
:
ApplicationDatabase
Module Contents
ApplicationDatabase_Impl
(
)
open
fun
clearAllTables
(
)
:
Unit
open
fun
pinboardDao
(
)
:
PinboardDao
open
class
ApplicationDatabase_Impl
:
ApplicationDatabase
Module Contents
ApplicationDatabase_Impl
(
)
open
fun
clearAllTables
(
)
:
Unit
open
fun
pinboardDao
(
)
:
PinboardDao
interface
PinboardDao
Module Contents
abstract
fun
getAll
(
)
:
Single
<
List
<
Pinboard
>
>
abstract
fun
insertAll
(
pinboards
:
List
<
Pinboard
>
)
:
Unit
open
class
PinboardDao_Impl
:
PinboardDao
Module Contents
PinboardDao_Impl
(
__db
:
RoomDatabase
)
open
fun
getAll
(
)
:
Single
<
List
<
Pinboard
>
>
open
fun
insertAll
(
pinboards
:
List
<
Pinboard
>
)
:
Unit
open
class
PinboardDao_Impl
:
PinboardDao
Module Contents
PinboardDao_Impl
(
__db
:
RoomDatabase
)
open
fun
getAll
(
)
:
Single
<
List
<
Pinboard
>
>
open
fun
insertAll
(
pinboards
:
List
<
Pinboard
>
)
:
Unit
package
com.jonasdevrient.citypinboard.pinboards
Module Contents
class
PinboardDetailsActivity
:
AppCompatActivity
Module Contents
PinboardDetailsActivity
(
)
protected
fun
onCreate
(
savedInstanceState
:
Bundle
?
)
:
Unit
fun
onOptionsItemSelected
(
item
:
MenuItem
)
:
Boolean
lateinit
var
pinboard
:
Pinboard
lateinit
var
viewAdapter
:
Adapter
<
*
>
class
PinboardListFragment
:
Fragment
Module Contents
PinboardListFragment
(
)
inner
class
RefreshListener
:
OnClickListener
Module Contents
RefreshListener
(
)
fun
onClick
(
view
:
View
)
:
Unit
lateinit
var
displayPinboards
:
MutableList
<
Pinboard
>
fun
onActivityCreated
(
savedInstanceState
:
Bundle
?
)
:
Unit
fun
onCreate
(
savedInstanceState
:
Bundle
?
)
:
Unit
fun
onCreateOptionsMenu
(
menu
:
Menu
,
inflater
:
MenuInflater
)
:
Unit
fun
onCreateView
(
inflater
:
LayoutInflater
,
container
:
ViewGroup
?
,
savedInstanceState
:
Bundle
?
)
:
View
?
fun
onResume
(
)
:
Unit
package
com.jonasdevrient.citypinboard.pinboards.posts
Module Contents
class
AddPostFragment
:
BottomSheetDialogFragment
Module Contents
AddPostFragment
(
)
fun
onActivityCreated
(
savedInstanceState
:
Bundle
?
)
:
Unit
fun
onCreateView
(
inflater
:
LayoutInflater
,
container
:
ViewGroup
?
,
savedInstanceState
:
Bundle
?
)
:
View
?
package
com.jonasdevrient.citypinboard.repositories
Module Contents
interface
GebruikerRepository
Module Contents
@POST
(
"users/checkusername"
)
abstract
fun
checkGebruikersnaam
(
@Body
gebruikersnaamResponse
:
CheckGebruikersnaamResponse
)
:
Observable
<
CheckGebruikersnaamResponse
>
@POST
(
"users/likedPosts"
)
abstract
fun
getLikedPosts
(
@Body
checkGeruikersnaamResponse
:
CheckGebruikersnaamResponse
)
:
Observable
<
List
<
PostResponse
>
>
@POST
(
"users/likePost"
)
abstract
fun
likePost
(
@Body
actionPostResponse
:
ActionPostResponse
)
:
Observable
<
List
<
PostResponse
>
>
@POST
(
"users/login"
)
abstract
fun
login
(
@Body
gebruiker
:
Gebruiker
)
:
Observable
<
RegistreerResponse
>
@POST
(
"users/register"
)
abstract
fun
registreer
(
@Body
gebruiker
:
Gebruiker
)
:
Observable
<
RegistreerResponse
>
@POST
(
"users/unLikePost"
)
abstract
fun
unLikePost
(
@Body
actionPostResponse
:
ActionPostResponse
)
:
Observable
<
List
<
PostResponse
>
>
interface
PinboardRepository
Module Contents
@POST
(
"pinboard/{id}/posts"
)
abstract
fun
addPostToPinboard
(
@Path
(
"id"
)
pinboardId
:
String
,
@Body
post
:
Post
)
:
Observable
<
PostResponse
>
@GET
(
"pinboards"
)
abstract
fun
getAll
(
)
:
Observable
<
List
<
Pinboard
>
>
package
com.jonasdevrient.citypinboard.responses
Module Contents
data
class
ActionPostResponse
Module Contents
ActionPostResponse
(
username
:
String
,
postId
:
String
)
val
postId
:
String
val
username
:
String
data
class
CheckGebruikersnaamResponse
Module Contents
CheckGebruikersnaamResponse
(
username
:
String
)
val
username
:
String
data
class
PostResponse
Module Contents
PostResponse
(
_id
:
String
,
title
:
String
,
body
:
String
,
dateCreated
:
Date
?
=
null
,
likes
:
Int
=
0
,
creator
:
String
?
=
null
)
val
_id
:
String
fun
addLike
(
)
:
Unit
val
body
:
String
val
creator
:
String
?
val
dateCreated
:
Date
?
var
likes
:
Int
fun
removeLike
(
)
:
Unit
val
title
:
String
data
class
RegistreerResponse
Module Contents
RegistreerResponse
(
token
:
String
)
val
token
:
String
package
com.jonasdevrient.citypinboard.services
Module Contents
object
GebruikerService
Module Contents
var
repository
:
GebruikerRepository
class
MainService
Module Contents
MainService
(
pinboardDao
:
PinboardDao
)
fun
getAll
(
)
:
Observable
<
List
<
Pinboard
>
>
val
pinboardDao
:
PinboardDao
object
PinboardService
Module Contents
var
repository
:
PinboardRepository
package
com.jonasdevrient.citypinboard.utils
Module Contents
class
ConnectionLiveData
:
LiveData
<
Boolean
>
Module Contents
ConnectionLiveData
(
context
:
Context
)
val
context
:
Context
protected
fun
onActive
(
)
:
Unit
protected
fun
onInactive
(
)
:
Unit
object
DateUtil
Module Contents
fun
toSimpleString
(
date
:
Date
)
:
String
package
com.squareup.picasso
Module Contents
class
R
class
R
package
io.reactivex.android
Module Contents
class
R
class
R